diff options
-rwxr-xr-x | plugins/StopSpamMod/src/utilities.cpp | 7 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/utilities.h | 2 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/version.h | 2 |
3 files changed, 7 insertions, 4 deletions
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)
diff --git a/plugins/StopSpamMod/src/utilities.h b/plugins/StopSpamMod/src/utilities.h index 8d75c10905..f941823bd0 100755 --- a/plugins/StopSpamMod/src/utilities.h +++ b/plugins/StopSpamMod/src/utilities.h @@ -2,7 +2,7 @@ std::wstring DBGetContactSettingStringPAN(MCONTACT hContact, char const * szModu std::string DBGetContactSettingStringPAN_A(MCONTACT hContact, char const * szModule, char const * szSetting, std::string errorValue); std::wstring &GetDlgItemString(HWND hwnd, int id); std::string &GetProtoList(); -bool ProtoInList(std::string proto); +bool ProtoInList(const char *szProto); std::wstring variables_parse(std::wstring const &tstrFormat, MCONTACT hContact); const int Stricmp(const wchar_t *str, const wchar_t *substr); //const int Stristr(const wchar_t *str, const wchar_t *substr); diff --git a/plugins/StopSpamMod/src/version.h b/plugins/StopSpamMod/src/version.h index e3618e26aa..79bd0a807a 100755 --- a/plugins/StopSpamMod/src/version.h +++ b/plugins/StopSpamMod/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 0
#define __RELEASE_NUM 2
-#define __BUILD_NUM 2
+#define __BUILD_NUM 3
#include <stdver.h>
|