mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-26 18:15:42 -04:00
Merge pull request #2711 from Dushistov/patch-1
Fix usage of `free` for stack variable
This commit is contained in:
commit
b157540ec2
@ -213,7 +213,7 @@ static ALWAYS_INLINE void FormatLogMessageAndPrintW(const char* channelName, con
|
||||
callback(wmessage_buf, wmessage_buflen);
|
||||
|
||||
if (wmessage_buf != wbuf)
|
||||
std::free(wbuf);
|
||||
std::free(wmessage_buf);
|
||||
|
||||
if (message_buf != buf)
|
||||
std::free(message_buf);
|
||||
|
Loading…
x
Reference in New Issue
Block a user