1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Curl_conncache_add_conn: fix memory leak on OOM

This commit is contained in:
Daniel Stenberg 2015-05-14 14:06:44 +02:00
parent a6af3df660
commit 750d678c0e

View File

@ -205,8 +205,10 @@ CURLcode Curl_conncache_add_conn(struct conncache *connc,
return result;
key = hashkey(conn);
if(!key)
if(!key) {
bundle_destroy(new_bundle);
return CURLE_OUT_OF_MEMORY;
}
rc = conncache_add_bundle(data->state.conn_cache, key, new_bundle);
free(key);