ntdll: Free memory for type field of an assembly_identity.

oldstable
Roman Mindalev 2009-03-13 20:15:33 +03:00 committed by Alexandre Julliard
parent b653679e6a
commit cbd935eff4
1 changed files with 1 additions and 0 deletions

View File

@ -338,6 +338,7 @@ static void free_assembly_identity(struct assembly_identity *ai)
RtlFreeHeap( GetProcessHeap(), 0, ai->arch );
RtlFreeHeap( GetProcessHeap(), 0, ai->public_key );
RtlFreeHeap( GetProcessHeap(), 0, ai->language );
RtlFreeHeap( GetProcessHeap(), 0, ai->type );
}
static struct entity* add_entity(struct entity_array *array, DWORD kind)