1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

ALLOC_N uses xmalloc, so that, use xfree for free

This commit is contained in:
Sokolov Yura 2012-01-06 14:47:10 +04:00
parent ba27787d0d
commit 684b15db3d

View file

@ -268,7 +268,7 @@ void HttpParser_free(void *data) {
TRACE();
if(data) {
free(data);
xfree(data);
}
}