fix wxURL::GetInputStream() for URLs with special characters in credentials (closes #10265)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -242,11 +242,11 @@ wxInputStream *wxURL::GetInputStream()
|
||||
size_t dwPasswordPos = m_userinfo.find(':');
|
||||
|
||||
if (dwPasswordPos == wxString::npos)
|
||||
m_protocol->SetUser(m_userinfo);
|
||||
m_protocol->SetUser(Unescape(m_userinfo));
|
||||
else
|
||||
{
|
||||
m_protocol->SetUser(m_userinfo(0, dwPasswordPos));
|
||||
m_protocol->SetPassword(m_userinfo(dwPasswordPos+1, m_userinfo.length() + 1));
|
||||
m_protocol->SetUser(Unescape(m_userinfo(0, dwPasswordPos)));
|
||||
m_protocol->SetPassword(Unescape(m_userinfo(dwPasswordPos+1, m_userinfo.length() + 1)));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user