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

This commit is contained in:
Rob Shearman 2007-12-26 11:02:48 +00:00 committed by Alexandre Julliard
parent 230ca207ca
commit 1f56359261

View file

@ -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);
}