Eradicated the last free() call. Let mm_free() take care of deallocation.

This commit is contained in:
Jardel Weyrich 2009-12-30 05:03:54 -02:00 committed by Nick Mathewson
parent 78ed097267
commit 0546ce11e8

View File

@ -2629,7 +2629,7 @@ request_new(struct evdns_base *base, int type, const char *name, int flags,
if (!req) return NULL;
if (name_len >= sizeof(namebuf)) {
free(req);
mm_free(req);
return NULL;
}