From ea50394bf1853627920d7f9028b3749172467424 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Fri, 29 Aug 2014 10:18:07 +0200 Subject: [PATCH] array: Adjust negative index before calling remove_head|tail() For ARRAY_TAIL we most often want to call remove_tail() not remove_head(). --- src/libstrongswan/collections/array.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libstrongswan/collections/array.c b/src/libstrongswan/collections/array.c index 8d619116a..61c696bc1 100644 --- a/src/libstrongswan/collections/array.c +++ b/src/libstrongswan/collections/array.c @@ -361,16 +361,16 @@ bool array_remove(array_t *array, int idx, void *data) { return FALSE; } + if (idx < 0) + { + idx = array_count(array) - 1; + } if (idx > array_count(array) / 2) { remove_tail(array, idx); } else { - if (idx < 0) - { - idx = array_count(array) - 1; - } remove_head(array, idx); } if (array->head + array->tail > ARRAY_MAX_UNUSED)