Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3489)

Unified Diff: base/third_party/libevent/kqueue.c

Issue 2134603002: Fix a logic bug in kqueue.c. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/third_party/libevent/kqueue.c
diff --git a/base/third_party/libevent/kqueue.c b/base/third_party/libevent/kqueue.c
index ee740eec1d675e915fde959d93ace04a4ee5c7ab..a91ab03d1c21cd7a2d6a3993f9e95cadacad877a 100644
--- a/base/third_party/libevent/kqueue.c
+++ b/base/third_party/libevent/kqueue.c
@@ -153,7 +153,7 @@ kq_init(struct event_base *base)
if (kevent(kq,
kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 ||
kqueueop->events[0].ident != -1 ||
- kqueueop->events[0].flags != EV_ERROR) {
+ !(kqueueop->events[0].flags & EV_ERROR)) {
event_warn("%s: detected broken kqueue; not using.", __func__);
free(kqueueop->changes);
free(kqueueop->events);
« base/third_party/libevent/README.chromium ('K') | « base/third_party/libevent/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698