50f89d
commit bd3b0fbae33a9a4cc5e2daf049443d5cf03d4251
50f89d
Author: Andreas Schwab <schwab@suse.de>
50f89d
Date:   Mon Nov 5 12:47:30 2018 +0100
50f89d
50f89d
    libanl: properly cleanup if first helper thread creation failed (bug 22927)
50f89d
50f89d
diff --git a/resolv/gai_misc.c b/resolv/gai_misc.c
50f89d
index e7c3b63cc5725b4f..80a2cff8353fcb6c 100644
50f89d
--- a/resolv/gai_misc.c
50f89d
+++ b/resolv/gai_misc.c
50f89d
@@ -261,8 +261,11 @@ __gai_enqueue_request (struct gaicb *gaicbp)
50f89d
 	      /* We cannot create a thread in the moment and there is
50f89d
 		 also no thread running.  This is a problem.  `errno' is
50f89d
 		 set to EAGAIN if this is only a temporary problem.  */
50f89d
-	      assert (lastp->next == newp);
50f89d
-	      lastp->next = NULL;
50f89d
+	      assert (requests == newp || lastp->next == newp);
50f89d
+	      if (lastp != NULL)
50f89d
+		lastp->next = NULL;
50f89d
+	      else
50f89d
+		requests = NULL;
50f89d
 	      requests_tail = lastp;
50f89d
 
50f89d
 	      newp->next = freelist;