From 2b10bc5fbbb7f387faad2cc9d74d62abd8ff466c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 23 Feb 2018 16:11:47 +0300 Subject: fixes #1165 (StopSpam mod: crash on "stopspam.cpp (81): OnDbEventFilterAdd") --- plugins/StopSpamMod/src/utilities.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'plugins/StopSpamMod/src/utilities.cpp') diff --git a/plugins/StopSpamMod/src/utilities.cpp b/plugins/StopSpamMod/src/utilities.cpp index f6f586a5eb..3e1c95e655 100755 --- a/plugins/StopSpamMod/src/utilities.cpp +++ b/plugins/StopSpamMod/src/utilities.cpp @@ -59,9 +59,12 @@ std::string &GetProtoList() return s = DBGetContactSettingStringPAN_A(NULL, pluginName, "protoList", "ICQ\r\n"); } -bool ProtoInList(std::string proto) +bool ProtoInList(const char *szProto) { - return std::string::npos != GetProtoList().find(proto + "\r\n"); + if (szProto == nullptr) + return false; + + return std::string::npos != GetProtoList().find(std::string(szProto) + "\r\n"); } void DeleteCListGroupsByName(wchar_t* szGroupName) -- cgit v1.2.3