diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-02 00:57:23 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-02 00:57:23 +0100 |
commit | a31d09509c0547ce3239b5776edd59c01202f78c (patch) | |
tree | 2f465a1848a281a2430fcace57a948796c826461 /libnetfs/fsys-get-children.c | |
parent | c3804ab00e95b6b9e330275cb4ff1c10f8af5531 (diff) | |
download | hurd-a31d09509c0547ce3239b5776edd59c01202f78c.tar.gz hurd-a31d09509c0547ce3239b5776edd59c01202f78c.tar.bz2 hurd-a31d09509c0547ce3239b5776edd59c01202f78c.zip |
fsys_get_children: Fix comparing strings
Diffstat (limited to 'libnetfs/fsys-get-children.c')
-rw-r--r-- | libnetfs/fsys-get-children.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnetfs/fsys-get-children.c b/libnetfs/fsys-get-children.c index 4e78a8ca..9c5a8f95 100644 --- a/libnetfs/fsys-get-children.c +++ b/libnetfs/fsys-get-children.c @@ -63,7 +63,7 @@ netfs_S_fsys_get_children (struct netfs_control *fsys, c = NULL; /* c was freed by iohelp_return_malloced_buffer. */ if (err) { - if (*names != *orig_names) + if (*names != orig_names) munmap (*names, n_len); goto errout; } |