b25888b419
www: http://www.wxwidgets.org/ from Andrew Dalgleish < openbsd at ajd dot net dot au > many thanks for much persistence!
14 lines
443 B
Plaintext
14 lines
443 B
Plaintext
$OpenBSD: patch-src_common_utilscmn_cpp,v 1.1.1.1 2004/07/16 21:01:35 todd Exp $
|
|
--- src/common/utilscmn.cpp.orig Sat May 10 07:36:55 2003
|
|
+++ src/common/utilscmn.cpp Thu Jun 26 11:05:10 2003
|
|
@@ -948,8 +948,7 @@ bool wxGetEmailAddress(wxChar *address,
|
|
if ( !email )
|
|
return FALSE;
|
|
|
|
- wxStrncpy(address, email, maxSize - 1);
|
|
- address[maxSize - 1] = wxT('\0');
|
|
+ strlcpy(address, email, maxSize);
|
|
|
|
return TRUE;
|
|
}
|