summaryrefslogtreecommitdiff
path: root/plugins/Variables/src
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-02-21 13:16:56 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-02-21 13:16:56 +0000
commitdf14d39c07a22130218388e7ce421710580408be (patch)
tree28d7a38254000b8e6c0e6c7f87122ee0ac2fd7a4 /plugins/Variables/src
parent1c44f2df0725c7673b0522121461337270cd47c6 (diff)
correct comments in headers
git-svn-id: http://svn.miranda-ng.org/main/trunk@3670 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Variables/src')
-rw-r--r--plugins/Variables/src/tokenregister.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/plugins/Variables/src/tokenregister.cpp b/plugins/Variables/src/tokenregister.cpp
index 7a7bbcf95f..5da24aed01 100644
--- a/plugins/Variables/src/tokenregister.cpp
+++ b/plugins/Variables/src/tokenregister.cpp
@@ -237,12 +237,9 @@ TCHAR *parseFromRegister(ARGUMENTSINFO *ai)
else if (trCopy.szCleanupService != NULL)
CallService( trCopy.szCleanupService, 0, (LPARAM)callRes );
}
- if (trCopy.flags & TRF_FREEMEM ) {
- if (trCopy.memType == TR_MEM_MIRANDA )
+ if (trCopy.flags & TRF_FREEMEM)
+ if (trCopy.memType == TR_MEM_MIRANDA)
mir_free(( void* )callRes );
-// else if (trCopy.memType == TR_MEM_VARIABLES )
-// mir_free((void *)callRes);
- }
}
LeaveCriticalSection(&csRegister);
return res;