diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-01 18:21:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-01 18:21:07 +0300 |
commit | dc8c4db75a2cb08919e8df9d8be194661af18d5e (patch) | |
tree | 9b206cb48ae86b5db3355dc391d0bb71fb352984 /src/core | |
parent | e1dfabffb3c1c955b0944bc658e107b59a6e78c8 (diff) |
fixes #3373 (Scriver: crash on unload)
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdmsg/src/msglog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdmsg/src/msglog.cpp b/src/core/stdmsg/src/msglog.cpp index 13d193be03..7dddbcd10f 100644 --- a/src/core/stdmsg/src/msglog.cpp +++ b/src/core/stdmsg/src/msglog.cpp @@ -439,7 +439,7 @@ void LoadMsgLogIcons(void) void FreeMsgLogIcons(void)
{
for (auto &it : pLogIconBmpBits)
- mir_free(it);
+ replaceStr(it, 0);
}
/////////////////////////////////////////////////////////////////////////////////////////
|