Commit f010396e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Actually remove unused FREE() macro

parent 34293972
......@@ -683,8 +683,7 @@ static inline uint8_t clip_uint8_vlc( int32_t a )
#define DECMALLOC_NULL( var, type ) type* var = (type*)malloc( sizeof(type) );\
if( !var ) return NULL;
#define FREENULL(a) do { if( a ) { free( a ); a = NULL; } } while(0)
#define FREE(a) do { if( a ) { free( a ); } } while(0)
#define FREENULL(a) do { free( a ); a = NULL; } while(0)
#define EMPTY_STR(str) (!str || !*str)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment