http://d.puremagic.com/issues/show_bug.cgi?id=2064


clugd...@yahoo.com.au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch




------- Comment #2 from clugd...@yahoo.com.au  2009-04-03 06:30 -------
statement.c,  in Statement *ForStatement::semantic(Scope *sc)

around line 1129. body = body->semantic(sc);
but body is null in this case.

Trivial fix:

    if (body) body = body->semantic(sc);


-- 

Reply via email to