diff options
author | George Hazan <george.hazan@gmail.com> | 2013-12-31 10:54:43 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-12-31 10:54:43 +0000 |
commit | e509920d44176bfba08b81fc4833e1c47d0ac66f (patch) | |
tree | e8b9b6992c8e4cdf77e6e37fd78b110249d89882 | |
parent | 51ee8ff282317892c79d216b1d0c894371bdfaf5 (diff) |
crash fix for reading old file transfer events
git-svn-id: http://svn.miranda-ng.org/main/trunk@7437 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | src/modules/database/dbutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/database/dbutils.cpp b/src/modules/database/dbutils.cpp index 81693aa23b..bb74b6b595 100644 --- a/src/modules/database/dbutils.cpp +++ b/src/modules/database/dbutils.cpp @@ -165,7 +165,7 @@ static INT_PTR DbEventGetText(WPARAM wParam, LPARAM lParam) char *buf = LPSTR(dbei->pBlob) + sizeof(DWORD);
ptrT tszFileName(getEventString(dbei, buf));
ptrT tszDescription(getEventString(dbei, buf));
- ptrT &ptszText = (*tszDescription == 0) ? tszFileName : tszDescription;
+ ptrT &ptszText = (lstrlen(tszDescription) == 0) ? tszFileName : tszDescription;
switch (egt->datatype) {
case DBVT_WCHAR:
return (INT_PTR)ptszText.detouch();
|