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
FYI Using MySQL datetime support with STL and C++20 can result in a memory leak being reported under MSVC. The timezone database (tzdb) is initialized in a way that's not protected from the debugger's leak detector.
So if I understood correctly, this is a problem in MSVC STL that won't get fixed at all, isn't it? What can we do in MySQL about it? Maybe add the info you provided to the documentation to guide other users encountering it?
FYI Using MySQL datetime support with STL and C++20 can result in a memory leak being reported under MSVC. The timezone database (tzdb) is initialized in a way that's not protected from the debugger's leak detector.
A workaround is offered here: microsoft/STL#2504
More on the problem here: microsoft/STL#2047
I put the workaround in my wxApp::OnExit handler and the leak no longer floods the debug output.
The text was updated successfully, but these errors were encountered: