This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH] _nss_nis_initgroups_dyn: Return error status
- From: Florian Weimer <fweimer at redhat dot com>
- To: GNU C Library <libc-alpha at sourceware dot org>
- Date: Thu, 26 Feb 2015 15:47:38 +0100
- Subject: [PATCH] _nss_nis_initgroups_dyn: Return error status
- Authentication-results: sourceware.org; auth=none
This seems to have been an oversight. An error can be returned if the
function is left with âgoto done;â.
2015-02-26 Florian Weimer <fweimer@redhat.com>
* nis/nss_nis/nis-initgroups.c (_nss_nis_initgroups_dyn):
Return error status.
diff --git a/nis/nss_nis/nis-initgroups.c b/nis/nss_nis/nis-initgroups.c
index d22b241..ed5c26b 100644
--- a/nis/nss_nis/nis-initgroups.c
+++ b/nis/nss_nis/nis-initgroups.c
@@ -326,5 +326,5 @@ done:
free (intern.next);
}
- return NSS_STATUS_SUCCESS;
+ return status;
}
--
Florian Weimer / Red Hat Product Security