From 47d0d742d0ba7cac754a7b1765328fb33a14ffc0 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 12 Feb 2015 17:19:11 +0000 Subject: complex fix against NULL in nicks git-svn-id: http://svn.miranda-ng.org/main/trunk@12097 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/chat/manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit v1.2.3