Commit 90d76060 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

mlang: Free SCRIPTINFO structure embedded in EnumScript object.

parent 9b3ec4fb
...@@ -1216,6 +1216,7 @@ static ULONG WINAPI fnIEnumScript_Release( ...@@ -1216,6 +1216,7 @@ static ULONG WINAPI fnIEnumScript_Release(
if (ref == 0) if (ref == 0)
{ {
TRACE("Destroying %p\n", This); TRACE("Destroying %p\n", This);
HeapFree(GetProcessHeap(), 0, This->script_info);
HeapFree(GetProcessHeap(), 0, This); HeapFree(GetProcessHeap(), 0, 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