-
-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
about memory leak #1309
Comments
Please be more specific, because it looks like you are the only one who "feels" this. FYI
|
Thank you for your interest. The first memory leak I encountered in Visual Studio Debug mode was rtc::InitLogger(LogLevel::Verbose); When I call , the plogInit(plog::Severity severity, plog::IAppender *appender) function is performed in global.cpp. logger = new Logger(severity); and consoleAppender = new ConsoleAppender(); You can see . |
There seems to be too many memory leaks in your code. Do you know? Am I the only one who feels this? _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF); This occurs when you quit testing in debug mode in visual studio using . At first, I thought it was a false positive, but after looking at it one by one, it seems that the actual memory is not being released in many cases.
The text was updated successfully, but these errors were encountered: