Fix typo in mm_free

svn:r1173
This commit is contained in:
Nick Mathewson 2009-04-13 18:32:24 +00:00
parent ca737ff3b5
commit fe95df15d3

View File

@ -1617,7 +1617,7 @@ mm_realloc(void *ptr, size_t sz)
void
mm_free(void *ptr)
{
if (_mm_realloc_fn)
if (_mm_free_fn)
_mm_free_fn(ptr);
else
free(ptr);