summaryrefslogtreecommitdiff
path: root/plugins/Variables/help.cpp
diff options
context:
space:
mode:
authorVlad Mironov <mironych@googlemail.com>2012-06-30 16:32:48 +0000
committerVlad Mironov <mironych@googlemail.com>2012-06-30 16:32:48 +0000
commitb60d555adb854610508e1fd4b4107e1e974d003e (patch)
tree002fda303fcb576ba89e70a1a4548223ac3794ed /plugins/Variables/help.cpp
parentc1fad409f3683c7dc2048060d5d98aa7b7228563 (diff)
realloc
git-svn-id: http://svn.miranda-ng.org/main/trunk@698 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Variables/help.cpp')
-rw-r--r--plugins/Variables/help.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Variables/help.cpp b/plugins/Variables/help.cpp
index 0f214bdcea..be9e377c28 100644
--- a/plugins/Variables/help.cpp
+++ b/plugins/Variables/help.cpp
@@ -267,7 +267,7 @@ static TCHAR *getTokenCategory(TOKENREGISTEREX *tr) {
while (*cur != _T('\0')) {
if (*cur == _T('\t')) {
*cur = _T('\0');
- helpText = ( char* )realloc(helpText, strlen(helpText)+1);
+ helpText = ( char* )mir_realloc(helpText, strlen(helpText)+1);
res = mir_a2t(helpText);
mir_free(helpText);