At http.c:282 you allocate memory for field->name and then you check if !field. Maybe this should have been: if (!field->name) or it is an error and you use field before checking it and if NULL you can get a segfault.
At http.c:282 you allocate memory for field->name and then you check if !field. Maybe this should have been:
if (!field->name)
or it is an error and you use field before checking it and if NULL you can get a segfault.