diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-09-18 05:55:16 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-09-18 05:55:16 +0000 |
commit | ebddac80a3a428ada4d009e4e028d764ec2cac84 (patch) | |
tree | b2b8e94342b6c5342abda4d1e16c844d8c61e64e /plugins | |
parent | 714a4367ebb95273d9ccbf32da349962a19c75fd (diff) |
NewsAggregator: memleak fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@15377 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NewsAggregator/Src/CheckFeed.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/NewsAggregator/Src/CheckFeed.cpp b/plugins/NewsAggregator/Src/CheckFeed.cpp index 83a78ee173..cf89be9898 100644 --- a/plugins/NewsAggregator/Src/CheckFeed.cpp +++ b/plugins/NewsAggregator/Src/CheckFeed.cpp @@ -175,6 +175,7 @@ static void XmlToMsg(MCONTACT hContact, CMString &title, CMString &link, CMStrin recv.szMessage = pszMessage;
ProtoChainRecvMsg(hContact, &recv);
}
+ mir_free(message);
}
void CheckCurrentFeed(MCONTACT hContact)
|