This commit is contained in:
2024-11-12 21:35:41 +00:00
parent dd979f34c8
commit 8bcd0a467c
2 changed files with 1 additions and 1 deletions

View File

@@ -170,7 +170,6 @@ list_insert (struct list_elem *before, struct list_elem *elem)
{
ASSERT (is_interior (before) || is_tail (before));
ASSERT (elem != NULL);
// Sanity checks to prevent (some) loop lists
ASSERT (before != elem);
ASSERT (before->prev != elem);