]> git.saurik.com Git - wxWidgets.git/commitdiff
Handle terminating NULL correctly
authorRobin Dunn <robin@alldunn.com>
Mon, 19 Jul 2004 20:51:18 +0000 (20:51 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 19 Jul 2004 20:51:18 +0000 (20:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28312 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/stc/PlatWX.cpp
src/stc/PlatWX.cpp

index d1e45d45fb7d9395298550ca5be0129e8b90e2df..b20f68fa34ca18f7c1315d2b886a0b18d5ae91f6 100644 (file)
@@ -1251,7 +1251,11 @@ double ElapsedTime::Duration(bool reset) {
 #if wxUSE_UNICODE
 wxString stc2wx(const char* str, size_t len)
 {
-    if (str[len] == 0)
+    // note: we assume that str is of length len not including the terminating null.
+
+    if (!len)
+        return wxEmptyString;
+    else if (str[len-1] == 0)
         // It's already terminated correctly.
         return wxString(str, wxConvUTF8, len);
 
index d1e45d45fb7d9395298550ca5be0129e8b90e2df..b20f68fa34ca18f7c1315d2b886a0b18d5ae91f6 100644 (file)
@@ -1251,7 +1251,11 @@ double ElapsedTime::Duration(bool reset) {
 #if wxUSE_UNICODE
 wxString stc2wx(const char* str, size_t len)
 {
-    if (str[len] == 0)
+    // note: we assume that str is of length len not including the terminating null.
+
+    if (!len)
+        return wxEmptyString;
+    else if (str[len-1] == 0)
         // It's already terminated correctly.
         return wxString(str, wxConvUTF8, len);