]> git.saurik.com Git - wxWidgets.git/commitdiff
iconv() doesn't set the trailing zero
authorRobert Roebling <robert@roebling.de>
Sat, 17 Aug 2002 18:20:53 +0000 (18:20 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 17 Aug 2002 18:20:53 +0000 (18:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16573 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filefn.cpp
src/common/strconv.cpp

index fd4b6b7ae9f5611d4eeaaa76d216088f2386d65f..61c33fbcbb40634855d10d6e567ec7f61d8e16f3 100644 (file)
@@ -1522,15 +1522,11 @@ wxChar *wxGetWorkingDirectory(wxChar *buf, int sz)
 
 wxString wxGetCwd()
 {
-    wxString str;
-
-    // we can't create wxStringBuffer object inline: Sun CC generates buggy
-    // code in this case!
-    {
-        wxStringBuffer buf(str, _MAXPATHLEN);
-        wxGetWorkingDirectory(buf, _MAXPATHLEN);
-    }
-
+    wxChar *buffer = new wxChar[_MAXPATHLEN];
+    wxGetWorkingDirectory(buffer, _MAXPATHLEN);
+    wxString str( buffer );
+    delete [] buffer;
     return str;
 }
 
index f1d4c56ea2c2567c793fa0e3c7131101ad544b68..b4eaa65148a6ef9e862cbda69529d5a525aadf82 100644 (file)
@@ -661,6 +661,9 @@ size_t IC_CharSet::MB2WC(wchar_t *buf, const char *psz, size_t n)
             // convert to native endianness
             WC_BSWAP(buf /* _not_ bufPtr */, res)
         }
+        
+        // iconv doesn't seem to set the trailing 0
+        buf[res] = 0;
     }
     else
     {