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
http: update libevent workaround to correct version
The libevent bug described in libevent/libevent@5ff8eb2
was already patched in release-2.1.9-beta, with cherry-picked
commits 5b40744d1581447f5b4496ee8d4807383e468e7a and
b25813800f97179b2355a7b4b3557e6a7f568df2.
There should be no side-effects by re-applying the workaround on
an already patched version of libevent, but it is best to set the
correct version number to avoid confusion.
// Disable reading to work around a libevent bug, fixed in 2.2.0.
226
-
if (event_get_version_number() >= 0x02010600 && event_get_version_number() < 0x02020001) {
225
+
// Disable reading to work around a libevent bug, fixed in 2.1.9
226
+
// See https://github.com/libevent/libevent/commit/5ff8eb26371c4dc56f384b2de35bea2d87814779
227
+
// and https://github.com/bitcoin/bitcoin/pull/11593.
228
+
if (event_get_version_number() >= 0x02010600 && event_get_version_number() < 0x02010900) {
0 commit comments