diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-06-11 20:30:41 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-06-11 20:30:41 +0000 |
commit | 11273c19170670e042fc1deebef7a3efbc31d5cf (patch) | |
tree | 865f7e378db7e7b2ee72ebe8352e74a2a5e79b19 /plugins/PasteIt | |
parent | f31129c4bb9e3dd93abda029988639414afe1bc1 (diff) |
small fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@14127 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PasteIt')
-rw-r--r-- | plugins/PasteIt/src/PasteToWeb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PasteIt/src/PasteToWeb.cpp b/plugins/PasteIt/src/PasteToWeb.cpp index 755285c8ca..9b7a846d07 100644 --- a/plugins/PasteIt/src/PasteToWeb.cpp +++ b/plugins/PasteIt/src/PasteToWeb.cpp @@ -559,7 +559,7 @@ wchar_t* PasteToWeb::SendToWeb(char* url, std::map<std::string, std::string>& he CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)nlhrReply);
}
- delete httpHeaders;
+ delete[] httpHeaders;
for (std::list<char*>::iterator it = mallBuf.begin(); it != mallBuf.end(); ++it)
{
delete *it;
|