5f7b84
commit 61595e3d36ded374f97961503e843a314b0203c2
5f7b84
Author: Andreas Schwab <schwab@suse.de>
5f7b84
Date:   Tue May 15 14:42:37 2018 +0200
5f7b84
5f7b84
    nscd: avoid assertion failure during persistent db check
5f7b84
    
5f7b84
    nscd should not abort when it finds inconsistencies in the persistent db.
5f7b84
5f7b84
diff --git a/nscd/connections.c b/nscd/connections.c
5f7b84
index 47fbb9923aa2aac7..98182007646a33d5 100644
5f7b84
--- a/nscd/connections.c
5f7b84
+++ b/nscd/connections.c
5f7b84
@@ -304,7 +304,8 @@ static int
5f7b84
 check_use (const char *data, nscd_ssize_t first_free, uint8_t *usemap,
5f7b84
 	   enum usekey use, ref_t start, size_t len)
5f7b84
 {
5f7b84
-  assert (len >= 2);
5f7b84
+  if (len < 2)
5f7b84
+    return 0;
5f7b84
 
5f7b84
   if (start > first_free || start + len > first_free
5f7b84
       || (start & BLOCK_ALIGN_M1))