You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid race condition when receiving signal during shutdown
If we receive a TERM signal while we're shutting down, we
can access a free'd pcap_t while trying to call pcap_breakloop().
We avoid this by setting the "pd" to NULL after freeing it, and don't
try to use it if it's NULL.
0 commit comments