fix memory track free return warning

This commit is contained in:
toddouska 2013-03-15 15:30:03 -07:00
parent 8e3f83e152
commit e3f72effb2

View File

@ -1003,7 +1003,7 @@ static INLINE int CurrentDir(const char* str)
ourMemStats.currentBytes -= mt->u.hint.thisSize;
#endif
return free(mt);
free(mt);
}