You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I was trying web proxy basic auth in cpprestsdk for Ubuntu 20, and the leak sanitizer detected memory leaks. I think the problem comes from this function in web_utilities.h:
details::plaintext_string _internal_decrypt() const
{
// Encryption APIs not supported on XP
#if defined(_WIN32) && _WIN32_WINNT >= _WIN32_WINNT_VISTA
return m_password.decrypt();
#elsereturndetails::plaintext_string(new ::utility::string_t(m_password));
#endif
}
In the line executed for Linux, that plaintext_string currently has this definition:
So the string is leaked when the plaintext_string is deleted. Shouldn't the delete data part be outside the #ifdef _WIN32 ? Or maybe a different deleter should be used for Linux?
The text was updated successfully, but these errors were encountered:
Hi, I was trying web proxy basic auth in cpprestsdk for Ubuntu 20, and the leak sanitizer detected memory leaks. I think the problem comes from this function in web_utilities.h:
In the line executed for Linux, that
plaintext_string
currently has this definition:The problem is that the
zero_memory_deleter
, defined in web_utilities.cpp, isn't doing anything for Linux:So the string is leaked when the plaintext_string is deleted. Shouldn't the
delete data
part be outside the#ifdef _WIN32
? Or maybe a different deleter should be used for Linux?The text was updated successfully, but these errors were encountered: