about summary refs log tree commit diff
path: root/nss
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-06-05 04:57:09 +0100
committerDJ Delorie <dj@redhat.com>2022-06-13 18:15:25 -0400
commit368c5c3e001a37571b61ab342f2b654c3d23643d (patch)
treebe6a9b61472d18c889da4c2968f55bcf781fc7c0 /nss
parentbb4148283fa7c52fbc7efe19e81cd129adc7fd61 (diff)
downloadglibc-368c5c3e001a37571b61ab342f2b654c3d23643d.tar.gz
glibc-368c5c3e001a37571b61ab342f2b654c3d23643d.tar.xz
glibc-368c5c3e001a37571b61ab342f2b654c3d23643d.zip
nss: add assert to DB_LOOKUP_FCT (BZ #28752)
It's interesting if we have a null action list,
so an assert is worthwhile.

Suggested-by: DJ Delorie <dj@redhat.com>
Signed-off-by: Sam James <sam@gentoo.org>
Reviewed-by: DJ Delorie <dj@redhat.com>
(cherry picked from commit 3fdf0a205b622e40fa7e3c4ed1e4ed4d5c6c5380)
Diffstat (limited to 'nss')
-rw-r--r--nss/XXX-lookup.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/nss/XXX-lookup.c b/nss/XXX-lookup.c
index dbc87868dd..343fd9869b 100644
--- a/nss/XXX-lookup.c
+++ b/nss/XXX-lookup.c
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <https://www.gnu.org/licenses/>.  */
 
+#include <assert.h>
 #include "nsswitch.h"
 
 /*******************************************************************\
@@ -55,6 +56,10 @@ DB_LOOKUP_FCT (nss_action_list *ni, const char *fct_name, const char *fct2_name,
 
   *ni = DATABASE_NAME_SYMBOL;
 
+  /* We want to know about it if we've somehow got a NULL action list;
+   in the past, we had bad state if seccomp interfered with setup. */
+  assert(*ni != NULL);
+
   return __nss_lookup (ni, fct_name, fct2_name, fctp);
 }
 libc_hidden_def (DB_LOOKUP_FCT)