diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-10-29 23:01:58 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-10-29 23:01:58 -0700 |
commit | 75ded9bcdff960829743aca4a984a4cbf40a3585 (patch) | |
tree | 191d0b8beb58ce5621a14a54f3c04445dc3e7665 /resolv/res_send.c | |
parent | Fix date_fmt for it_IT and it_CH locales. (diff) | |
download | glibc-75ded9bcdff960829743aca4a984a4cbf40a3585.tar.gz glibc-75ded9bcdff960829743aca4a984a4cbf40a3585.tar.bz2 glibc-75ded9bcdff960829743aca4a984a4cbf40a3585.zip |
Initialize local variable in resolver.
When the DNS server doesn't reply at all we possibly tested
an unitialized variable.
Diffstat (limited to 'resolv/res_send.c')
-rw-r--r-- | resolv/res_send.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resolv/res_send.c b/resolv/res_send.c index fa48bd98d1..e2bbfcc83f 100644 --- a/resolv/res_send.c +++ b/resolv/res_send.c @@ -1005,7 +1005,8 @@ send_dg(res_state statp, struct pollfd pfd[1]; int ptimeout; struct sockaddr_in6 from; - int resplen, n; + int resplen = 0; + int n; /* * Compute time for the total operation. |