void quit_signal(void)
{
if (0 < sock) {
close(sock);
sock = 0;
unlink(o_sockname) //possible issue identified - semgrep
}
cleanup_exit(0);
return;
}
void quit_signal(void)
{
if (0 < sock) {
close(sock);
sock = 0;
unlink(o_sockname) //possible issue identified - semgrep
}
cleanup_exit(0);
return;
}