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

tool_operhlp.c: fix add_file_name_to_url() OOM handling

This commit is contained in:
Yang Tse 2013-07-29 18:23:38 +02:00
parent 8693bbd8c4
commit 9a5c2d8373

View File

@ -139,6 +139,8 @@ char *add_file_name_to_url(CURL *curl, char *url, const char *filename)
url = urlbuffer; /* use our new URL instead! */
}
else
Curl_safefree(url);
}
return url;
}