No need to double check for null pointer when freeing memory.

This commit is contained in:
Frederic Culot
2009-07-19 07:44:58 +00:00
parent a93d88c370
commit a4da35c65f
2 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
/* $calcurse: mem.c,v 1.5 2009/07/12 17:48:13 culot Exp $ */
/* $calcurse: mem.c,v 1.6 2009/07/19 07:44:59 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -281,7 +281,7 @@ dbg_free (void *ptr, const char *pos)
stats_del_blk (buf[BLK_ID]);
xfree (buf);
free (buf);
mstats.nfree += size;
}