From 5772526af8c29f7eecbe26bb70a106e350cf8680 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 16 May 2015 15:37:16 +0000 Subject: aplrtly revert [13616] git-svn-id: http://svn.miranda-ng.org/main/trunk@13619 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 6164b79de4..1dbd55bb5d 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 = mir_strdup(a); - y = mir_strdup(b); + x = _strdup(a); + y = _strdup(b); x = _strupr(x); y = _strupr(y); char * pos = strstr(x, y); -- cgit v1.2.3