0b26f7
commit a5bd2e10e0c25b80286dc36068e22a4cb4893af0
0b26f7
Author: Siddhesh Poyarekar <siddhesh@sourceware.org>
0b26f7
Date:   Tue Aug 3 21:11:03 2021 +0530
0b26f7
0b26f7
    gaiconf_init: Avoid double-free in label and precedence lists
0b26f7
    
0b26f7
    labellist and precedencelist could get freed a second time if there
0b26f7
    are allocation failures, so set them to NULL to avoid a double-free.
0b26f7
    
0b26f7
    Reviewed-by: Arjun Shankar <arjun@redhat.com>
0b26f7
    (cherry picked from commit 77a34079d8f3d63b61543bf3af93043f8674e4c4)
0b26f7
0b26f7
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c
0b26f7
index 838a68f0229b5aa8..43dfc6739e350a58 100644
0b26f7
--- a/sysdeps/posix/getaddrinfo.c
0b26f7
+++ b/sysdeps/posix/getaddrinfo.c
0b26f7
@@ -2008,6 +2008,7 @@ gaiconf_init (void)
0b26f7
 	      l = l->next;
0b26f7
 	    }
0b26f7
 	  free_prefixlist (labellist);
0b26f7
+	  labellist = NULL;
0b26f7
 
0b26f7
 	  /* Sort the entries so that the most specific ones are at
0b26f7
 	     the beginning.  */
0b26f7
@@ -2046,6 +2047,7 @@ gaiconf_init (void)
0b26f7
 	      l = l->next;
0b26f7
 	    }
0b26f7
 	  free_prefixlist (precedencelist);
0b26f7
+	  precedencelist = NULL;
0b26f7
 
0b26f7
 	  /* Sort the entries so that the most specific ones are at
0b26f7
 	     the beginning.  */