mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
oops, add missing return keyword
This commit is contained in:
parent
0b85e53af2
commit
7dfef13224
@ -773,7 +773,7 @@ CURLcode Curl_ftp_done(struct connectdata *conn, CURLcode status)
|
||||
|
||||
path = curl_unescape(conn->path, 0); /* get the "raw" path */
|
||||
if(!path)
|
||||
CURLE_OUT_OF_MEMORY;
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
|
||||
flen = ftp->file?strlen(ftp->file):0; /* file is "raw" already */
|
||||
dlen = strlen(path)-flen;
|
||||
|
Loading…
Reference in New Issue
Block a user