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
==30741== at 0x4C2E0EF: operator new(unsigned long) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==30741== by 0x6D99BE: vmime::net::smtp::SMTPConnection::authenticate() (SMTPConnection.cpp:344)
==30741== by 0x6D8762: vmime::net::smtp::SMTPConnection::connect() (SMTPConnection.cpp:200)
==30741== by 0x65F8BA: vmime::net::smtp::SMTPTransport::connect() (SMTPTransport.cpp:103)
SMTPConnection.cpp:344: auto encoder = new vmime::utility::encoder::b64Encoder();
Removing the new operator and make it a non-pointer should fix the problem.
The text was updated successfully, but these errors were encountered:
Just a small issue which came up using Valgrind:
SMTPConnection.cpp:344:
auto encoder = new vmime::utility::encoder::b64Encoder();
Removing the
new
operator and make it a non-pointer should fix the problem.The text was updated successfully, but these errors were encountered: