mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-23 15:11:42 +00:00
Merge branch 'master' of git://git.denx.de/u-boot-ubi
* 'master' of git://git.denx.de/u-boot-ubi: ubifs: Fix bad free() sequence in ubifs_finddir()
This commit is contained in:
commit
98e99e5a48
1 changed files with 2 additions and 4 deletions
|
@ -360,6 +360,8 @@ out:
|
|||
return err;
|
||||
}
|
||||
|
||||
if (file->private_data)
|
||||
kfree(file->private_data);
|
||||
if (file)
|
||||
free(file);
|
||||
if (dentry)
|
||||
|
@ -367,10 +369,6 @@ out:
|
|||
if (dir)
|
||||
free(dir);
|
||||
|
||||
if (file->private_data)
|
||||
kfree(file->private_data);
|
||||
file->private_data = NULL;
|
||||
file->f_pos = 2;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue