- Timestamp:
- Sep 29, 2005, 1:43:18 AM (20 years ago)
- Location:
- trunk/mondo
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mondo/bootstrap
r30 r31 33 33 autoconf 34 34 rm -rf autom4te.cache 35 ./mksvnversion -
trunk/mondo/mondo/common/my-stuff.h
r30 r31 1 1 /* my-stuff.h 2 $Id : my-stuff.h,v 1.8 2004/06/21 20:20:36 hugo Exp$2 $Id$ 3 3 . 4 4 … … 418 418 * Free @p x and set it to NULL. 419 419 */ 420 #define paranoid_free(x) { free(x); x=NULL;}420 #define paranoid_free(x) {if (x != NULL) free(x); x=NULL;} 421 421 422 422 /**
Note:
See TracChangeset
for help on using the changeset viewer.