# HG changeset patch # User Mike Pavone # Date 1372551679 25200 # Node ID 8b3ae850d1c4dad11a4499f207e6561b7beb2a97 # Parent 7e8e179116af58cdf800d93c9a9b8b50a689cefd Forgot to null initialize the statfile pointer diff -r 7e8e179116af -r 8b3ae850d1c4 blastem.c --- a/blastem.c Sat Jun 29 17:15:08 2013 -0700 +++ b/blastem.c Sat Jun 29 17:21:19 2013 -0700 @@ -1884,7 +1884,7 @@ int debug = 0; int ym_log = 0; FILE *address_log = NULL; - char * statefile; + char * statefile = NULL; for (int i = 2; i < argc; i++) { if (argv[i][0] == '-') { switch(argv[i][1]) {