Roman Mindalev : ntdll: Free memory for type field of an assembly_identity.

Alexandre Julliard julliard at winehq.org
Wed Mar 25 10:31:32 CDT 2009


Module: wine
Branch: master
Commit: cbd935eff4f6634ebd2e1ba785ce0280d515743c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cbd935eff4f6634ebd2e1ba785ce0280d515743c

Author: Roman Mindalev <lists at r000n.net>
Date:   Fri Mar 13 20:15:33 2009 +0300

ntdll: Free memory for type field of an assembly_identity.

---

 dlls/ntdll/actctx.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/dlls/ntdll/actctx.c b/dlls/ntdll/actctx.c
index 25c590a..f864033 100644
--- a/dlls/ntdll/actctx.c
+++ b/dlls/ntdll/actctx.c
@@ -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)




More information about the wine-cvs mailing list