diff mbox series

[ovs-dev,v2,04/16] list: ensure iterator is NULL after pop loop

Message ID 20220214101359.3846911-5-amorenoz@redhat.com
State Changes Requested
Headers show
Series Fix undefined behavior in loop macros | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed

Commit Message

Adrián Moreno Feb. 14, 2022, 10:13 a.m. UTC
After the loop ends, the iterator is not guaranteed to point to a valid
object and should not be used. Make it NULL to avoid undefined behavior.

Signed-off-by: Adrian Moreno <amorenoz@redhat.com>
---
 include/openvswitch/list.h | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/include/openvswitch/list.h b/include/openvswitch/list.h
index 7cc1419a1..997afc0e4 100644
--- a/include/openvswitch/list.h
+++ b/include/openvswitch/list.h
@@ -110,8 +110,9 @@  static inline bool ovs_list_is_short(const struct ovs_list *);
          UPDATE_MULTIVAR_SAFE_LONG(VAR, NEXT))
 
 #define LIST_FOR_EACH_POP(ITER, MEMBER, LIST)                                 \
-    while (!ovs_list_is_empty(LIST)                                           \
-           && (INIT_CONTAINER(ITER, ovs_list_pop_front(LIST), MEMBER), 1))
+    while (!ovs_list_is_empty(LIST) ?                                         \
+           (INIT_CONTAINER(ITER, ovs_list_pop_front(LIST), MEMBER), 1) :      \
+           (ITER = NULL, 0))
 
 /* Inline implementations. */