mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 04:48:21 -04:00
Merge branch 'acpi-pnp'
* acpi-pnp: ACPI / resources: free memory on error in add_region_before()
This commit is contained in:
@@ -660,8 +660,10 @@ static int add_region_before(u64 start, u64 end, u8 space_id,
|
||||
return -ENOMEM;
|
||||
|
||||
error = request_range(start, end, space_id, flags, desc);
|
||||
if (error)
|
||||
if (error) {
|
||||
kfree(reg);
|
||||
return error;
|
||||
}
|
||||
|
||||
reg->start = start;
|
||||
reg->end = end;
|
||||
|
||||
Reference in New Issue
Block a user