changeset 310:d20cf0dec9c1 trunk

[svn r331] Fixed, forgot to default initialize the SynchronizedStatement enclosinghandler.
author lindquist
date Sat, 28 Jun 2008 11:50:28 +0200
parents d59c363fccad
children 9967a3270837
files dmd/statement.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/dmd/statement.c	Sat Jun 28 11:37:53 2008 +0200
+++ b/dmd/statement.c	Sat Jun 28 11:50:28 2008 +0200
@@ -2866,6 +2866,7 @@
     this->exp = exp;
     this->body = body;
     this->esync = NULL;
+    this->enclosinghandler = NULL;
     // LLVMDC
     this->llsync = NULL;
 }
@@ -2876,6 +2877,7 @@
     this->exp = NULL;
     this->body = body;
     this->esync = esync;
+    this->enclosinghandler = NULL;
     // LLVMDC
     this->llsync = NULL;
 }