pcname is used without being initialized in thing.c:free_thing_final()
... char pcname[200]; ... th->name = new_str (pcname);
pcname is set but never used in thing.c:free_thing() ... char pcname[200]; ... strcpy (pcname, th->name); ...
Log in to post a comment.