d3d10: Fix a HeapFree() in d3d10_effect_Release().

This commit is contained in:
Rico Schüller 2009-10-27 20:10:19 +01:00 committed by Alexandre Julliard
parent e6ca176a48
commit 607a643bcc
1 changed files with 1 additions and 1 deletions

View File

@ -1737,7 +1737,7 @@ static ULONG STDMETHODCALLTYPE d3d10_effect_Release(ID3D10Effect *iface)
{
d3d10_effect_variable_destroy(&This->local_variables[i]);
}
HeapFree(GetProcessHeap(), 0, &This->local_variables);
HeapFree(GetProcessHeap(), 0, This->local_variables);
}
if (This->local_buffers)