Commit 7dfef132 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

oops, add missing return keyword

parent 0b85e53a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;