diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-12-09 01:15:52 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-12-09 01:15:52 +0000 |
commit | 48091fb3d3e5ec35506ef434bf8712bb5696c3fc (patch) | |
tree | 22597bae89a7b7c5f2153947767e384884effa77 | |
parent | abc0f4f8f97b36f2865986374405d091cefea107 (diff) |
* my_getid was leaking file descriptors, causing 'ls -l' on long
directories to fail
-Erik
-rw-r--r-- | Changelog | 2 | ||||
-rw-r--r-- | utility.c | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -9,6 +9,8 @@ integration with the about-to-be-released tinylogin.) * kill now behaves itself properly, added 'kill -l' to list signals * Began to add tail, butit doesn't work yet. + * my_getid was leaking file descriptors, causing 'ls -l' on long + directories to fail -Erik Andrsen @@ -645,11 +645,14 @@ my_getid(const char *filename, char *name, uid_t id) continue; if (name) { - if (0 == strcmp(rname, name)) + if (0 == strcmp(rname, name)) { + fclose( file); return( rid); + } } if ( id != -1 && id == rid ) { strncpy(name, rname, 8); + fclose( file); return( TRUE); } } |