Date: 06/03/15 (Code WTF) Keywords: no keywords
static inline void FREE(void* ptr) { if (ptr != NULL) { free(ptr); ptr = NULL; } }
Source: https://code-wtf.livejournal.com/222193.html