You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
609 B
18 lines
609 B
commit f9d2d03254a58d92635a311a42253eeed5a40a47 |
|
Author: Andreas Schwab <schwab@suse.de> |
|
Date: Mon May 26 18:01:31 2014 +0200 |
|
|
|
Fix invalid file descriptor reuse while sending DNS query (BZ #15946) |
|
|
|
diff --git glibc-2.17-c758a686/resolv/res_send.c glibc-2.17-c758a686/resolv/res_send.c |
|
index 3273d55..af42b8a 100644 |
|
--- glibc-2.17-c758a686/resolv/res_send.c |
|
+++ glibc-2.17-c758a686/resolv/res_send.c |
|
@@ -1410,6 +1410,7 @@ send_dg(res_state statp, |
|
retval = reopen (statp, terrno, ns); |
|
if (retval <= 0) |
|
return retval; |
|
+ pfd[0].fd = EXT(statp).nssocks[ns]; |
|
} |
|
} |
|
goto wait;
|
|
|