]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msdos/utilsdos.cpp
add wxScrollHelper::ShowScrollbars() (implemented for GTK only right now, generic...
[wxWidgets.git] / src / msdos / utilsdos.cpp
index 006603afa56a6c8c47161af400cba6134b1908b5..93d9b31006c9c4ea5dcb0a5ff0e5203defb09568 100644 (file)
@@ -233,7 +233,7 @@ bool wxGetUserId(wxChar *buf, int n)
     if (!user)
         user = _T("user");
 
-    wxStrncpy(buf, user, n);
+    wxStrlcpy(buf, user, n);
     return true;
 }
 
@@ -254,7 +254,7 @@ bool wxGetHostName(wxChar *buf, int n)
     if (!host)
         host = _T("host");
 
-    wxStrncpy(buf, host, n);
+    wxStrlcpy(buf, host, n);
     return true;
 }