You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
Just a little fix in Rats 2.3 :
Bug description :
Sometime ptr->data is NULL (sorry I can't be more precise).
In report.c lign 558 update :
- printf(" <type>%s</type>\n",
- ptr->data->Name);
with :
+ if( !ptr->data )
+ printf(" <type>None</type>\n");
+ else
+ printf(" <type>%s</type>\n",
+ ptr->data->Name);
Best regards
Original issue reported on code.google.com by [email protected] on 28 Jun 2011 at 7:48
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 28 Jun 2011 at 7:48The text was updated successfully, but these errors were encountered: