From f0d5f754b65eb84b2f30c0d46a53910c19c0475c Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 21 Apr 2014 18:35:12 +0000 Subject: [PATCH] (svn r26480) -Fix (r26479): forgot to remove a * --- src/stringfilter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stringfilter.cpp b/src/stringfilter.cpp index 780b4a8d66..98392bed66 100644 --- a/src/stringfilter.cpp +++ b/src/stringfilter.cpp @@ -32,7 +32,7 @@ void StringFilter::SetFilterTerm(const char *str) assert(str != NULL); - char *dest = MallocT(strlen(str) + 1); + char *dest = MallocT(strlen(str) + 1); this->filter_buffer = dest; WChar state = STATE_WHITESPACE;