commit 04ffa662adc8ee1b45fcd633c519bbe21f78f93a from: Omar Polo date: Mon Feb 19 15:39:31 2024 UTC ev: fix corruption in bubbledown tmp is of the wrong size, so we memcpy the wrong values. fun. commit - f47e9216ca57a589fd5c47edb614b7385bde87ae commit + 04ffa662adc8ee1b45fcd633c519bbe21f78f93a blob - 558a8bff492597d849cd3f1466060da335863727 blob + 012a52f33f76a50f7775584c494436504130e5bf --- ev.c +++ ev.c @@ -333,7 +333,7 @@ ev_timer_pending(unsigned int id) static void bubbledown(size_t i) { - struct timeval tmp; + struct evtimer tmp; size_t l, r, s; for (;;) {