diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 11:25:04 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 11:25:11 +0100 |
commit | b6a238ea84aa8c7e07b906669cd279f901e7d137 (patch) | |
tree | fe385a100a0965c6c8ae639ddb377114c604178c /libdiskfs | |
parent | 6ab707e575fefa32c039ce5f815e4859b6cd1d47 (diff) | |
download | hurd-b6a238ea84aa8c7e07b906669cd279f901e7d137.tar.gz hurd-b6a238ea84aa8c7e07b906669cd279f901e7d137.tar.bz2 hurd-b6a238ea84aa8c7e07b906669cd279f901e7d137.zip |
fsys_get_children: Fix double-free on error
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/fsys-get-children.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/fsys-get-children.c b/libdiskfs/fsys-get-children.c index 7e2a37b1..1c20f1ee 100644 --- a/libdiskfs/fsys-get-children.c +++ b/libdiskfs/fsys-get-children.c @@ -60,9 +60,9 @@ diskfs_S_fsys_get_children (struct diskfs_control *fsys, err = iohelp_return_malloced_buffer ((char *) c, c_count * sizeof *c, (char **) controls, controlsCnt); + c = NULL; /* c was freed by iohelp_return_malloced_buffer. */ if (err) goto errout; - c = NULL; /* c was freed by iohelp_return_malloced_buffer. */ *controlsPoly = MACH_MSG_TYPE_MOVE_SEND; *controlsCnt = c_count; |