diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-06-27 19:35:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-06-27 19:35:17 +0000 |
commit | a42a105966d05df2ce9afefc387c99ac919fdfc4 (patch) | |
tree | 6dc3ed7bfa32fa45821f59d45e7e39e2ef34a810 /libc/pwd_grp | |
parent | 536362633fc9b7615f3cd2c0543e553c3e0f4cdf (diff) |
ret could have been used uninitialized in one case
Diffstat (limited to 'libc/pwd_grp')
-rw-r--r-- | libc/pwd_grp/pwent.c | 2 | ||||
-rw-r--r-- | libc/pwd_grp/spent.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/pwd_grp/pwent.c b/libc/pwd_grp/pwent.c index 51d2fba96..b8ae812cb 100644 --- a/libc/pwd_grp/pwent.c +++ b/libc/pwd_grp/pwent.c @@ -67,7 +67,7 @@ void endpwent(void) int getpwent_r (struct passwd *password, char *buff, size_t buflen, struct passwd **result) { - int ret; + int ret=EINVAL; LOCK; *result = NULL; if (pw_fd != -1 && (ret=__getpwent_r(password, buff, buflen, pw_fd)) == 0) { diff --git a/libc/pwd_grp/spent.c b/libc/pwd_grp/spent.c index 734854b24..46f3a32be 100644 --- a/libc/pwd_grp/spent.c +++ b/libc/pwd_grp/spent.c @@ -64,7 +64,7 @@ void endspent(void) int getspent_r (struct spwd *spwd, char *buff, size_t buflen, struct spwd **result) { - int ret; + int ret=EINVAL; LOCK; *result = NULL; if (spwd_fd != -1 && (ret=__getspent_r(spwd, buff, buflen, spwd_fd)) == 0) { |