diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-04-15 19:45:07 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-04-15 19:45:07 +0000 |
commit | da985f982d63b06db8784199105f73bc0a4d6fc6 (patch) | |
tree | 0db5197388ed0b69847259488f6abf52277eb7f1 /plugins/MirandaG15/src/LCDFramework/CLCDTextLog.cpp | |
parent | 9e3ba523300180641ef7a22f791bd3ae89ec4785 (diff) |
MirandaG15:
- minor bugfixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@12843 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirandaG15/src/LCDFramework/CLCDTextLog.cpp')
-rw-r--r-- | plugins/MirandaG15/src/LCDFramework/CLCDTextLog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirandaG15/src/LCDFramework/CLCDTextLog.cpp b/plugins/MirandaG15/src/LCDFramework/CLCDTextLog.cpp index d1abb9d704..a2cd753099 100644 --- a/plugins/MirandaG15/src/LCDFramework/CLCDTextLog.cpp +++ b/plugins/MirandaG15/src/LCDFramework/CLCDTextLog.cpp @@ -338,7 +338,7 @@ void CLCDTextLog::WrapMessage(CLogEntry *pEntry) i += iMaxChars;
}
}
- free(piExtents);
+ delete[] piExtents;
/*
while(i<=iLen)
{
|