Branch: Tag:

2015-07-24

2015-07-24 17:59:31 by Arne Goedeke <el@laramies.com>

Compiler: fixed a NULL-dereference

If a variable was undefined, indexing it with ?-> would lead to a segfault
during compilation.

3739:    else    {    fix_type_field( $1 ); -  if( $1->type ) +  if( $1 && $1->type )    {    $1->type->refs++;