[core] remove assert in fdevent_unregister()

assumptions changed: fdn->events can be 0 with server streaming
request and/or response.
This commit is contained in:
Glenn Strauss 2016-07-07 12:47:13 -04:00
parent 53d906968b
commit 1cb30900f3
1 changed files with 0 additions and 2 deletions

View File

@ -141,8 +141,6 @@ int fdevent_unregister(fdevents *ev, int fd) {
if (!ev) return 0;
fdn = ev->fdarray[fd];
force_assert(fdn->events == 0);
fdnode_free(fdn);
ev->fdarray[fd] = NULL;