Skip to content
Snippets Groups Projects
Commit 1f563592 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard
Browse files

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

parent 230ca207
Branches
Tags
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment