X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=lib%2Fclosedir.c;fp=lib%2Fclosedir.c;h=30d12903517946e2020cc3d4a2e09f0b24389481;hb=20fcfc81ece044b8b0a6768ec6cf47be4e22a2e6;hp=fa8e210633befaefe47122baf385108cae2a8e14;hpb=d57728a6ca2413a7c564d8b7bb13d9e5a5a180f3;p=debian%2Fgzip diff --git a/lib/closedir.c b/lib/closedir.c index fa8e210..30d1290 100644 --- a/lib/closedir.c +++ b/lib/closedir.c @@ -1,5 +1,5 @@ /* Stop reading the entries of a directory. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2016 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -39,7 +39,7 @@ int closedir (DIR *dirp) { -# if REPLACE_FCHDIR +# if REPLACE_FCHDIR || REPLACE_DIRFD int fd = dirfd (dirp); # endif int retval; @@ -49,6 +49,10 @@ closedir (DIR *dirp) retval = closedir (dirp); +# ifdef __KLIBC__ + if (!retval) + _gl_unregister_dirp_fd (fd); +# endif #else if (dirp->current != INVALID_HANDLE_VALUE)