From: Nick Mathewson Date: Wed, 7 Aug 2013 00:00:53 +0000 (-0400) Subject: Add an assertion for another of the complaints from coverity. See 1b065d07df196 X-Git-Tag: release-2.1.4-alpha~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c06985a01230102783ffa1fdc8528f75e48ef4f;p=libevent Add an assertion for another of the complaints from coverity. See 1b065d07df196 --- diff --git a/event.c b/event.c index 010d9132..e50616c4 100644 --- a/event.c +++ b/event.c @@ -1539,6 +1539,7 @@ event_process_active_single_queue(struct event_base *base, case EV_CLOSURE_EVENT_FINALIZE: case EV_CLOSURE_EVENT_FINALIZE_FREE: base->current_event = NULL; + EVUTIL_ASSERT(ev != NULL); EVUTIL_ASSERT((evcb->evcb_flags & EVLIST_FINALIZING)); EVBASE_RELEASE_LOCK(base, th_base_lock); ev->ev_evcallback.evcb_cb_union.evcb_evfinalize(ev, ev->ev_arg);