diff options
author | George Hazan <george.hazan@gmail.com> | 2015-02-12 17:19:11 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-02-12 17:19:11 +0000 |
commit | 47d0d742d0ba7cac754a7b1765328fb33a14ffc0 (patch) | |
tree | f62b24ef94f19a06fce5e7260f858477e293a828 /src | |
parent | 07f9c668a8292fa0869faf80881956592bf5096f (diff) |
complex fix against NULL in nicks
git-svn-id: http://svn.miranda-ng.org/main/trunk@12097 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/chat/manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/chat/manager.cpp b/src/modules/chat/manager.cpp index c3706062de..7f59dd5f36 100644 --- a/src/modules/chat/manager.cpp +++ b/src/modules/chat/manager.cpp @@ -947,7 +947,7 @@ static USERINFO* UM_SortUser(USERINFO **ppUserList, const TCHAR *pszUID) USERINFO* UM_AddUser(STATUSINFO *pStatusList, USERINFO **ppUserList, const TCHAR *pszUID, const TCHAR *pszNick, WORD wStatus)
{
- if (!pStatusList || !ppUserList)
+ if (pStatusList == NULL || ppUserList == NULL || pszNick == NULL)
return NULL;
USERINFO *ui = *ppUserList, *pLast = NULL;
|