mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
homedir: Avoid memory leaks on errors
* common/homedir.c (unix_rootdir): Free allocated memory on error path -- GnuPG-bug-id: 5393 Signed-off-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
parent
940af3f052
commit
6ee3eb4202
@ -636,6 +636,8 @@ unix_rootdir (int want_sysconfdir)
|
|||||||
es_fclose (fp);
|
es_fclose (fp);
|
||||||
xfree (buffer);
|
xfree (buffer);
|
||||||
xfree (line);
|
xfree (line);
|
||||||
|
xfree (rootdir);
|
||||||
|
xfree (sysconfdir);
|
||||||
checked = 1;
|
checked = 1;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user