]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ftp.cpp
Workaround for memory bug when using wxRegConfig and calling
[wxWidgets.git] / src / common / ftp.cpp
index 0a470ca93f1ba41d2f087c4a0362500e76c0b11a..013495c741c9f9a0451eea8ddc19f6654fea70b7 100644 (file)
@@ -348,7 +348,7 @@ char wxFTP::GetResult()
     }
 
     // if we got here we must have a non empty code string
-    return code[0u];
+    return (char)code[0u];
 }
 
 // ----------------------------------------------------------------------------
@@ -824,7 +824,7 @@ bool wxFTP::GetList(wxArrayString& files,
     //        - Windows : like "dir" command
     //        - others  : ?
     wxString line(details ? _T("LIST") : _T("NLST"));
-    if ( !wildcard.IsEmpty() )
+    if ( !wildcard.empty() )
     {
         line << _T(' ') << wildcard;
     }