diff options
author | George Hazan <ghazan@miranda.im> | 2023-04-12 18:45:44 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-04-12 18:45:44 +0300 |
commit | 3fe5f97dcd7c8ef8deabc32a83f5075df13bc8d2 (patch) | |
tree | 368e31221d2f0f0091d69a06f55934009aeaeeee /src/mir_app | |
parent | a58839666f1b2e81f1d85d833bbd8fefaf70046b (diff) |
fix for another potential crash
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/db_events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/db_events.cpp b/src/mir_app/src/db_events.cpp index 6f6fc281be..263706d844 100644 --- a/src/mir_app/src/db_events.cpp +++ b/src/mir_app/src/db_events.cpp @@ -165,7 +165,7 @@ static INT_PTR DbEventGetTextWorker(DB::EventInfo *dbei, int codepage, int datat DB::FILE_BLOB blob(*dbei);
CMStringW wszText(blob.getName());
- if (mir_wstrlen(blob.getDescr()) > 0) {
+ if (mir_wstrlen(blob.getDescr())) {
wszText.Append(L": ");
wszText.Append(blob.getDescr());
}
|