+2018-03-27 Andreas Schwab <schwab@suse.de>
+
+ [BZ #23005]
+ * resolv/res_send.c (__res_context_send): Return ENOMEM if
+ allocation of private copy of nsaddr_list fails.
+
2018-03-27 Jesse Hathaway <jesse@mbuki-mvuki.org>
[BZ #23024]
[22685] powerpc: Fix syscalls during early process initialization
[22715] x86-64: Properly align La_x86_64_retval to VEC_SIZE
[22774] malloc: Integer overflow in malloc (CVE-2018-6551)
+ [23005] resolv: Fix crash in resolver on memory allocation failure
[23024] getlogin_r: return early when linux sentinel value is set
[23037] resolv: Fully initialize struct mmsghdr in send_dg
\f
'\0',
sizeof (struct sockaddr_in6)
- sizeof (struct sockaddr_in));
+ else
+ {
+ __set_errno (ENOMEM);
+ return -1;
+ }
}
EXT(statp).nscount = statp->nscount;
}