* view.c (enqueue_change): Combined the while loop with the break.
Fixed an off-by-one-error.
Этот коммит содержится в:
родитель
d2f7ec86c4
Коммит
9e5c41008d
@ -369,9 +369,7 @@ enqueue_change (struct hexedit_change_node **head,
|
||||
{
|
||||
struct hexedit_change_node *curr = *head;
|
||||
|
||||
while (curr) {
|
||||
if (node->offset < curr->offset)
|
||||
break;
|
||||
while (curr != NULL && curr->offset < node->offset) {
|
||||
head = &(curr->next);
|
||||
curr = curr->next;
|
||||
}
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user