zend_llist_del_element improvement
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Zend/zend_llist.c b/Zend/zend_llist.c | |
index 4656420..26baf4d 100644 | |
--- a/Zend/zend_llist.c | |
+++ b/Zend/zend_llist.c | |
@@ -91,15 +91,13 @@ ZEND_API void zend_llist_prepend_element(zend_llist *l, void *element) | |
ZEND_API void zend_llist_del_element(zend_llist *l, void *element, int (*compare)(void *element1, void *element2)) | |
{ | |
zend_llist_element *current=l->head; | |
- zend_llist_element *next; | |
while (current) { | |
- next = current->next; | |
if (compare(current->data, element)) { | |
DEL_LLIST_ELEMENT(current, l); | |
break; | |
} | |
- current = next; | |
+ current = current->next; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment