- Julien Chaffraix eliminated a duplicated initialization in singlesocket().

This commit is contained in:
Kamil Dudka 2010-01-03 13:46:37 +00:00
parent 2c93ec5303
commit fd903eb6be
3 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,9 @@
Changelog
Kamil Dudka (3 Jan 2010)
- Julien Chaffraix eliminated a duplicated initialization in singlesocket().
Daniel Stenberg (2 Jan 2010)
- Make curl support --ssl and --ssl-reqd instead of the previous FTP-specific
versions --ftp-ssl and --ftp-ssl-reqd as these options are now used to

View File

@ -379,6 +379,7 @@ Judson Bishop
Juergen Wilke
Jukka Pihl
Julian Noble
Julien Chaffraix
Jun-ichiro itojun Hagino
Jurij Smakov
Justin Fletcher

View File

@ -1760,7 +1760,6 @@ static void singlesocket(struct Curl_multi *multi,
struct Curl_one_easy *easy_by_hash;
bool remove_sock_from_hash;
memset(&socks, 0, sizeof(socks));
for(i=0; i< MAX_SOCKSPEREASYHANDLE; i++)
socks[i] = CURL_SOCKET_BAD;