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 */
|
path = curl_unescape(conn->path, 0); /* get the "raw" path */
|
||||||
if(!path)
|
if(!path)
|
||||||
CURLE_OUT_OF_MEMORY;
|
return CURLE_OUT_OF_MEMORY;
|
||||||
|
|
||||||
flen = ftp->file?strlen(ftp->file):0; /* file is "raw" already */
|
flen = ftp->file?strlen(ftp->file):0; /* file is "raw" already */
|
||||||
dlen = strlen(path)-flen;
|
dlen = strlen(path)-flen;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user