]> git.saurik.com Git - wxWidgets.git/commitdiff
remove another unnecessary memcpy() of string contents to wxStringBufferLength
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 6 Jun 2008 21:24:35 +0000 (21:24 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 6 Jun 2008 21:24:35 +0000 (21:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53997 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/uri.cpp

index 9b2f5503d33fcc3e242844611d611d2e5ae03162..7ddc18d1dd1c3ba33b470b0b23528c90d5d87b4e 100644 (file)
@@ -697,10 +697,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);
                 theBuffer.SetLength(wxStrlen(theBuffer));
             }