summaryrefslogtreecommitdiff
path: root/plugins/IEView
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-03-18 11:51:38 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-03-18 11:51:38 +0000
commit976508f30d0579e05d8ccd53be903b3cda89f508 (patch)
treea65671d1375d621110662adda8f0eb2c60053adf /plugins/IEView
parent00f7de90210080e231b2f8c2a0bf39c8b0a048ac (diff)
various memory allocation problems
git-svn-id: http://svn.miranda-ng.org/main/trunk@4090 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView')
-rw-r--r--plugins/IEView/src/TabSRMMHTMLBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/IEView/src/TabSRMMHTMLBuilder.cpp b/plugins/IEView/src/TabSRMMHTMLBuilder.cpp
index aad617fd6d..f407dd62b4 100644
--- a/plugins/IEView/src/TabSRMMHTMLBuilder.cpp
+++ b/plugins/IEView/src/TabSRMMHTMLBuilder.cpp
@@ -429,9 +429,9 @@ void TabSRMMHTMLBuilder::appendEventNonTemplate(IEView *view, IEVIEWEVENT *event
free(output);
}
}
- if (szRealProto!=NULL) delete szRealProto;
+
+ mir_free(szRealProto);
view->documentClose();
-// view->scrollToBottom();
}
void TabSRMMHTMLBuilder::appendEvent(IEView *view, IEVIEWEVENT *event) {