]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/buffer.h
fixes #13557
[wxWidgets.git] / include / wx / buffer.h
index 800c41b71431183f652977a56ab2411c3e7facbe..6d98f6e286e52d86b7ee52c2e5aaf9c8c220731d 100644 (file)
@@ -312,6 +312,10 @@ public:
         if ( !str )
             return false;
 
+        // For consistency with the ctor taking just the length, NUL-terminate
+        // the buffer.
+        str[len] = (CharType)0;
+
         if ( this->m_data == this->GetNullData() )
         {
             this->m_data = new Data(str, len);
@@ -434,7 +438,7 @@ public:
 
     friend class wxMemoryBuffer;
 
-    // everyting is private as it can only be used by wxMemoryBuffer
+    // everything is private as it can only be used by wxMemoryBuffer
 private:
     wxMemoryBufferData(size_t size = wxMemoryBufferData::DefBufSize)
         : m_data(size ? malloc(size) : NULL), m_size(size), m_len(0), m_ref(0)