]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix posting of binary data using wxHTTP.
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 25 Jun 2010 09:42:21 +0000 (09:42 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 25 Jun 2010 09:42:21 +0000 (09:42 +0000)
Don't use mbc_str() which can fail to convert contents of the string created
using wxString::From8BitData(). Use To8BitData() instead.

This fixes posting of binary data via HTTP using binary content transfer
encoding.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
src/common/http.cpp

index ebca103e848068f7ec450a712544b686cffd2afc..730996fbaa5fba9eb796573d12a0634dc2ae70b9 100644 (file)
@@ -452,6 +452,7 @@ All:
 - Added wxMessageQueue::Clear().
 - Added wxConfig::Read(float *) overload (Terry Farnham).
 - Always use decimal point (and not the current locale separator) in wxConfig.
+- Fix posting of binary data using wxHTTP (Catalin Raceanu).
 
 Unix:
 
index 9a4833595e39c321bb33108f6e5011ee047bff04..4af87f6d241aab34f87db36a86ee31e0d7070302 100644 (file)
@@ -346,7 +346,17 @@ bool wxHTTP::BuildRequest(const wxString& path, wxHTTP_Req req)
     Write("\r\n", 2);
 
     if ( req == wxHTTP_POST ) {
-        Write(m_post_buf.mbc_str(), m_post_buf.Len());
+        // Post data can be arbitrary binary data when the "binary" content
+        // transfer encoding is used so don't assume it's ASCII only or
+        // NUL-terminated.
+        {
+            const wxScopedCharBuffer buf(m_post_buf.To8BitData());
+            Write(buf, buf.length());
+        } // delete the buffer before modifying the string it points to, it
+          // wouldn't really be a problem here even if we didn't do this
+          // because we won't use this buffer again but this will avoid any
+          // nasty surprises in the future if this code changes
+
         m_post_buf = wxEmptyString;
     }