multi: Fixed a memory leak on OOM condition

This commit is contained in:
Dan Fandrich 2014-01-24 00:22:08 +01:00
parent 755dc2f058
commit da9864fb72

View File

@ -329,6 +329,7 @@ struct Curl_multi *Curl_multi_handle(int hashsize, /* socket hash */
multi->conn_cache = NULL;
Curl_close(multi->closure_handle);
multi->closure_handle = NULL;
Curl_llist_destroy(multi->msglist, NULL);
free(multi);
return NULL;