Skip to content

Commit

Permalink
fixup! gnrc_sixlowpan_frag_sfr: fix ARQ scheduler race-condition
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed May 30, 2023
1 parent 7c28616 commit a10b277
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1708,7 +1708,7 @@ static void _sched_next_frame(gnrc_sixlowpan_frag_fb_t *fbuf)

static inline bool _arq_scheduled(gnrc_sixlowpan_frag_fb_t *fbuf)
{
evtimer_event_t *ptr = _arq_timer->events;
evtimer_event_t *ptr = _arq_timer.events;
evtimer_event_t *event = &fbuf->sfr.arq_timeout_event.event;
while (ptr) {
if (ptr == event) {
Expand Down

0 comments on commit a10b277

Please sign in to comment.