Browse Source

Stray semicolon

(cherry picked from commit 921029aacb79fe405cb7d829355d7113f3df490a)

Source commit: 21ced79a16de77bbe677706b50355a1e283f8709
Martin Prikryl 4 years ago
parent
commit
af908df3bc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/filezilla/FtpListResult.cpp

+ 1 - 1
source/filezilla/FtpListResult.cpp

@@ -452,7 +452,7 @@ void CFtpListResult::AddLine(t_directory::t_direntry & direntry)
   { //Remove version information, only keep the latest file
     int pos=direntry.name.ReverseFind(L';');
     if (pos<=0 || pos>=(direntry.name.GetLength()-1))
-      return;;
+      return;
     int version=_ttoi(direntry.name.Mid(pos+1));
     direntry.name=direntry.name.Left(pos);