From a0dd0a481a034aa5a9e670becad7416902a7cce4 Mon Sep 17 00:00:00 2001 From: Walter Bright Date: Wed, 14 Dec 2011 13:25:47 -0800 Subject: [PATCH] uninitialized field --- src/struct.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/struct.c b/src/struct.c index 3a14bb250b75..822fccc5caef 100644 --- a/src/struct.c +++ b/src/struct.c @@ -50,6 +50,7 @@ AggregateDeclaration::AggregateDeclaration(Loc loc, Identifier *id) aliasthis = NULL; noDefaultCtor = FALSE; #endif + dtor = NULL; } enum PROT AggregateDeclaration::prot()