diff options
author | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-12-08 11:50:33 +0000 |
---|---|---|
committer | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-12-08 11:50:33 +0000 |
commit | 433880d22438cdafb9dd8fe92ade2cd1073fde49 (patch) | |
tree | ca52f943e2f0464b05883b02abdf5ab8303cff17 /plugins/MirandaG15 | |
parent | 897314924732a35178fa94c257ea370b6c056120 (diff) |
mirandag15 small fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@11273 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirandaG15')
-rw-r--r-- | plugins/MirandaG15/src/CAppletManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirandaG15/src/CAppletManager.cpp b/plugins/MirandaG15/src/CAppletManager.cpp index ef9746eb87..57f21e7340 100644 --- a/plugins/MirandaG15/src/CAppletManager.cpp +++ b/plugins/MirandaG15/src/CAppletManager.cpp @@ -1210,7 +1210,7 @@ int CAppletManager::HookChatInbound(WPARAM wParam,LPARAM lParam) GCEVENT *gce = (GCEVENT*)lParam; GCDEST *gcd; - if (gce == NULL || gcd == NULL) + if (gce == NULL || gce->pDest == NULL) TRACE(_T("<< [%s] skipping invalid event\n")); gcd = (GCDEST*)gce->pDest; |