BACKENDS: Initialize more TimerSlot fields when resetting it

This imports changes from commit 05f3fe420f20e8e44ed525960fcb713b43d5d0ad
This commit is contained in:
Filippos Karapetis 2019-07-14 15:12:07 +03:00
parent 1e23d43006
commit da15a38b66

View file

@ -36,7 +36,7 @@ struct TimerSlot {
TimerSlot *next;
TimerSlot() : refCon(0), interval(0), nextFireTime(0), nextFireTimeMicro(0), next(0) {}
TimerSlot() : callback(nullptr), refCon(nullptr), interval(0), nextFireTime(0), nextFireTimeMicro(0), next(nullptr) {}
};
void insertPrioQueue(TimerSlot *head, TimerSlot *newSlot) {