From 2cd05c2649104e8690defdcf0122d8c3e827c1d2 Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Sat, 10 Jan 2015 18:44:06 +0000 Subject: Variables: - Fixed various memory leaks git-svn-id: http://svn.miranda-ng.org/main/trunk@11821 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Variables/src/parse_math.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'plugins/Variables/src/parse_math.cpp') diff --git a/plugins/Variables/src/parse_math.cpp b/plugins/Variables/src/parse_math.cpp index bd11a39c9f..54820e48f1 100644 --- a/plugins/Variables/src/parse_math.cpp +++ b/plugins/Variables/src/parse_math.cpp @@ -142,8 +142,10 @@ static TCHAR *parseNum(ARGUMENTSINFO *ai) unsigned zeros = max(padding - (signed int)_tcslen(szVal), 0); TCHAR *res = (TCHAR*)mir_alloc((zeros + _tcslen(szVal) + 1)*sizeof(TCHAR)); - if (res == NULL) + if (res == NULL) { + mir_free(szVal); return NULL; + } memset(res, 0, ((zeros + _tcslen(szVal) + 1) * sizeof(TCHAR))); TCHAR *cur = res; -- cgit v1.2.3