# HG changeset patch # User lindquist # Date 1214646628 -7200 # Node ID d20cf0dec9c1258c94a3a167bf3721ca945ade5b # Parent d59c363fccad27c41d0510d593e1d8ad468e1a12 [svn r331] Fixed, forgot to default initialize the SynchronizedStatement enclosinghandler. diff -r d59c363fccad -r d20cf0dec9c1 dmd/statement.c --- 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; }