GNOME Bugzilla – Bug 569725
objects/SISSI/sissi_object.c:280: free() called for nothing
Last modified: 2009-01-30 17:45:43 UTC
In file objects/SISSI/sissi_object.c:280: free() is called for nothing. In lines that don't affect filename in any way are removed, we see that free() is called for filename, even we know that filename is NULL. gchar *filename = NULL; free (filename); Redundant call for free() should be removed.
2009-01-30 Hans Breuer <hans@breuer.org> * objects/SISSI/area.c objects/SISSI/faraday.c objects/SISSI/room.c objects/SISSI/sissi_object.c objects/SISSI/site.c : quite some allocation/deallocation mismatch removed, fixes bug #569725