mirror of
https://github.com/curl/curl.git
synced 2026-05-15 12:06:20 +03:00
minor leak in case of error, thanks to "./runtests.pl -n -t 25"
This commit is contained in:
parent
d3999e06d1
commit
853134017d
1 changed files with 3 additions and 1 deletions
|
|
@ -1777,8 +1777,10 @@ CURLcode Curl_follow(struct SessionHandle *data,
|
|||
newest=(char *)malloc( urllen + 1 + /* possible slash */
|
||||
newlen + 1 /* zero byte */);
|
||||
|
||||
if(!newest)
|
||||
if(!newest) {
|
||||
free(url_clone); /* don't leak this */
|
||||
return CURLE_OUT_OF_MEMORY; /* go out from this */
|
||||
}
|
||||
|
||||
/* copy over the root url part */
|
||||
memcpy(newest, url_clone, urllen);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue