]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/docview.cpp
added support for double arguments to wxCmdLineParser (patch 1907289)
[wxWidgets.git] / src / common / docview.cpp
index 7f37a56f550004c905a9ad3929b9ae3cc328b22a..d678ca6b54c3d473fd3ed2d1244baa09ecefe661 100644 (file)
@@ -2439,15 +2439,22 @@ bool wxTransferStreamToFile(wxInputStream& stream, const wxString& filename)
         return false;
 
     char buf[4096];
-    do
+    for ( ;; )
     {
         stream.Read(buf, WXSIZEOF(buf));
 
         const size_t nRead = stream.LastRead();
-        if ( !nRead || !file.Write(buf, nRead) )
+        if ( !nRead )
+        {
+            if ( stream.Eof() )
+                break;
+
+            return false;
+        }
+
+        if ( !file.Write(buf, nRead) )
             return false;
     }
-    while ( !stream.Eof() );
 
     return true;
 }