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:
parent
ba27787d0d
commit
684b15db3d
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ void HttpParser_free(void *data) {
|
|||
TRACE();
|
||||
|
||||
if(data) {
|
||||
free(data);
|
||||
xfree(data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue