evhtp debugging: memleaks, test errors, etc

This commit is contained in:
Olof hagsand 2020-11-19 18:06:20 +01:00
parent c0ad6d3f8f
commit 3d10c3bfcb
6 changed files with 21 additions and 6 deletions

View file

@ -154,7 +154,7 @@ restconf_sig_term(int arg)
// stream_child_freeall(_CLICON_HANDLE);
restconf_terminate(_CLICON_HANDLE);
}
clicon_exit_set(); /* checked in clixon_event_loop() */
clicon_exit_set(); /* XXX should rather signal event_base_loop */
exit(-1);
}
@ -885,6 +885,8 @@ cx_evhtp_socket_extract(clicon_handle h,
}
retval = 0;
done:
if (cv)
cv_free(cv);
if (reason)
free(reason);
return retval;
@ -1230,6 +1232,15 @@ restconf_config_backend(clicon_handle h,
if (restconf_drop_privileges(h, WWWUSER) < 0)
goto done;
}
/* Exit can go via signal handler without returning here */
if (xconfig){
xml_free(xconfig);
xconfig = NULL;
}
if (nsc){
cvec_free(nsc);
nsc = NULL;
}
/* libevent main loop */
event_base_loop(eh->eh_evbase, 0); /* XXX: replace with clixon_event_loop() */
retval = 0;