From: Vadim Zeitlin Date: Fri, 6 Jun 2008 21:20:22 +0000 (+0000) Subject: remove unnecessary memcpy() of string contents to wxStringBufferLength X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/dac131af1d60dacc5dbd9f6ba706b77fc8da5791 remove unnecessary memcpy() of string contents to wxStringBufferLength git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/uri.cpp b/src/common/uri.cpp index bcdd7eae66..9b2f5503d3 100644 --- a/src/common/uri.cpp +++ b/src/common/uri.cpp @@ -648,10 +648,6 @@ const wxChar* wxURI::ParsePath(const wxChar* uri, bool bReference, bool bNormali if (bNormalize) { wxStringBufferLength theBuffer(m_path, m_path.length() + 1); -#if wxUSE_STL || wxUSE_UNICODE_UTF8 - // FIXME-UTF8: have some wxReadWriteStringBuffer instead? - wxTmemcpy(theBuffer, m_path.c_str(), m_path.length()+1); -#endif Normalize(theBuffer, true); theBuffer.SetLength(wxStrlen(theBuffer)); }