From 164424ac47e2be37daa5e4346cc29a865042027e Mon Sep 17 00:00:00 2001
From: George Hazan <george.hazan@gmail.com>
Date: Fri, 8 Jun 2012 17:03:32 +0000
Subject: crash fix

git-svn-id: http://svn.miranda-ng.org/main/trunk@362 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 plugins/NewXstatusNotify/xstatus.cpp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/plugins/NewXstatusNotify/xstatus.cpp b/plugins/NewXstatusNotify/xstatus.cpp
index 4692dd5682..d6f4997e13 100644
--- a/plugins/NewXstatusNotify/xstatus.cpp
+++ b/plugins/NewXstatusNotify/xstatus.cpp
@@ -217,7 +217,7 @@ void ShowPopup(XSTATUSCHANGE *xsc)
 		xsc->stzText = mir_tstrdup(buff);
 	}
 
-	TCHAR *Template;
+	TCHAR *Template = _T("");
 	switch (xsc->action)
 	{
 		case NOTIFY_NEW_XSTATUS:
@@ -226,6 +226,8 @@ void ShowPopup(XSTATUSCHANGE *xsc)
 			Template = templates.PopupNewMsg; break;
 		case NOTIFY_REMOVE:
 			Template = templates.PopupRemove; break;
+		case NOTIFY_OPENING_ML:
+			Template = templates.LogOpening; break;
 	}
 
 	TCHAR stzPopupText[2*MAX_TEXT_LEN]; 
@@ -264,7 +266,7 @@ void LogToMessageWindow(XSTATUSCHANGE *xsc, BOOL opening)
 		xsc->stzText = mir_tstrdup(buff);
 	}
 
-	TCHAR *Template;
+	TCHAR *Template = _T("");
 	switch (xsc->action)
 	{
 		case NOTIFY_NEW_XSTATUS:
-- 
cgit v1.2.3