Fix a bogus free() in eventdns.c. Bug reported by xiando.

svn:r8428
This commit is contained in:
Nick Mathewson 2006-09-19 20:45:20 +00:00
parent 93beeac01d
commit 4bc42f4c18

View File

@ -1566,7 +1566,7 @@ request_new(int type, const char *name, int flags, eventdns_callback_type callba
return req;
err1:
free(req->request);
free(req);
return NULL;
}