diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-10-02 15:57:46 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-10-02 15:57:46 +0000 |
commit | 62713cf3eece92588464ce06810146f5c5cece8e (patch) | |
tree | 71488ce81ab34b82edcfb5001af991a6e167f8a0 /protocols/Steam/src/request_queue.cpp | |
parent | d23b4b4b1ccc9549aa8fc12326e7d7f135f1ce39 (diff) |
Steam: fix memory corruptions
git-svn-id: http://svn.miranda-ng.org/main/trunk@15487 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/request_queue.cpp')
-rw-r--r-- | protocols/Steam/src/request_queue.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Steam/src/request_queue.cpp b/protocols/Steam/src/request_queue.cpp index 12f9beb61c..ab5a7e0d75 100644 --- a/protocols/Steam/src/request_queue.cpp +++ b/protocols/Steam/src/request_queue.cpp @@ -78,6 +78,7 @@ void RequestQueue::Execute(RequestQueueItem *item) if (item->finallyCallback != NULL)
item->finallyCallback(item->arg);
delete item;
+ delete response;
}
unsigned int RequestQueue::AsyncSendThread(void *owner, void *arg)
|