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

oops, add missing return keyword

This commit is contained in:
Daniel Stenberg 2004-12-17 08:58:48 +00:00
parent 0b85e53af2
commit 7dfef13224

View File

@ -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;