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
In list_hp_retire function of hp_list, the original code would skip the
next element if a deletion happens. It was incorrect because of its
neglect to adjust the index simultaneously, skipping track of the
object origin from &rl->list[iret + 1].
This patch then changed the behavior as:
- If reorganize happens, keep the same index for next iteration.
- Else, index++.
0 commit comments