From: Marcel Raad Date: Fri, 5 Apr 2019 07:20:13 +0000 (+0200) Subject: ftplistparser: fix LGTM alert "Empty block without comment" X-Git-Tag: curl-7_65_0~199 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab5a6cf6039f5a478195ebe8d92b7eccd271fda8;p=thirdparty%2Fcurl.git ftplistparser: fix LGTM alert "Empty block without comment" Removing the block is consistent with line 954/957. Closes https://github.com/curl/curl/pull/3732 --- diff --git a/lib/ftplistparser.c b/lib/ftplistparser.c index 1b1de5c3cd..c4eb43732d 100644 --- a/lib/ftplistparser.c +++ b/lib/ftplistparser.c @@ -914,10 +914,7 @@ size_t Curl_ftp_parselist(char *buffer, size_t size, size_t nmemb, case PL_WINNT_DIRORSIZE: switch(parser->state.NT.sub.dirorsize) { case PL_WINNT_DIRORSIZE_PRESPACE: - if(c == ' ') { - - } - else { + if(c != ' ') { parser->item_offset = finfo->b_used - 1; parser->item_length = 1; parser->state.NT.sub.dirorsize = PL_WINNT_DIRORSIZE_CONTENT;