SAFE_FREE 78 lib/tdb/common/tdb_private.h #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); (x)=NULL;} } while(0) SAFE_FREE 31 lib/util/memory.h #define SAFE_FREE(x) do { if ((x) != NULL) {free(discard_const_p(void *, (x))); (x)=NULL;} } while(0) SAFE_FREE 15 nsswitch/winbind_struct_protocol.h #define SAFE_FREE(x) do { if(x) {free(x); x=NULL;} } while(0) SAFE_FREE 77 source3/client/mount.cifs.c #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0) SAFE_FREE 41 source3/lib/netapi/examples/netdomjoin-gui/netdomjoin-gui.c #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0)