From b2fad485cd5b41744ef0cc4a02722c021afd926c Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Mon, 1 Dec 2014 00:07:01 +0000 Subject: ZeroMemory -> memset, few bugs fised git-svn-id: http://svn.miranda-ng.org/main/trunk@11184 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/CmdLine/src/utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/CmdLine/src') diff --git a/plugins/CmdLine/src/utils.cpp b/plugins/CmdLine/src/utils.cpp index 4c5336eaaf..9e20f665b5 100644 --- a/plugins/CmdLine/src/utils.cpp +++ b/plugins/CmdLine/src/utils.cpp @@ -208,7 +208,7 @@ TCHAR *GetContactName(MCONTACT hContact, char *szProto) INT_PTR ret; char proto[200]; - ZeroMemory((void *) &ctInfo, sizeof(ctInfo)); + memset(&ctInfo, 0, sizeof(ctInfo)); ctInfo.cbSize = sizeof(ctInfo); if (szProto) { @@ -264,7 +264,7 @@ TCHAR *GetContactID(MCONTACT hContact, char *szProto) CONTACTINFO ctInfo; INT_PTR ret; - ZeroMemory((void *) &ctInfo, sizeof(ctInfo)); + memset(&ctInfo, 0, sizeof(ctInfo)); ctInfo.cbSize = sizeof(ctInfo); ctInfo.szProto = szProto; ctInfo.dwFlag = CNF_UNIQUEID; -- cgit v1.2.3