Commit 1f563592 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

hlink: Fix memory leak by freeing extension services This->headers in the release function.

parent 230ca207
......@@ -91,6 +91,7 @@ static ULONG WINAPI ExtServUnk_Release(IUnknown *iface)
if(!ref) {
heap_free(This->username);
heap_free(This->password);
heap_free(This->headers);
heap_free(This);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment