From 581a7a4fca5155decdc48ee1972af806d24c6ceb Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 16 May 2015 14:23:28 +0000 Subject: cleanup git-svn-id: http://svn.miranda-ng.org/main/trunk@13616 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Clist_modern/src/modern_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Clist_modern/src/modern_utils.cpp') diff --git a/plugins/Clist_modern/src/modern_utils.cpp b/plugins/Clist_modern/src/modern_utils.cpp index 1dbd55bb5d..6164b79de4 100644 --- a/plugins/Clist_modern/src/modern_utils.cpp +++ b/plugins/Clist_modern/src/modern_utils.cpp @@ -6,8 +6,8 @@ char * __cdecl strstri(char *a, const char *b) { char * x, *y; if (!a || !b) return FALSE; - x = _strdup(a); - y = _strdup(b); + x = mir_strdup(a); + y = mir_strdup(b); x = _strupr(x); y = _strupr(y); char * pos = strstr(x, y); -- cgit v1.2.3