summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2005-12-11 01:26:09 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2005-12-11 01:26:09 +0000
commitd9a99af589ec10e0859ee2df11a31655457c44a9 (patch)
tree0244347e29888779d14c472de4320855070d62e8 /include
parent8ef327b3f5f7fc440d782a03ab9b9c9b7c2a5f3f (diff)
Bug 5965 - major bug in AST_LIST_REMOVE
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7428 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/linkedlists.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/asterisk/linkedlists.h b/include/asterisk/linkedlists.h
index cfe846225..f687189e2 100644
--- a/include/asterisk/linkedlists.h
+++ b/include/asterisk/linkedlists.h
@@ -424,15 +424,16 @@ struct { \
#define AST_LIST_REMOVE(head, elm, field) do { \
if ((head)->first == (elm)) { \
(head)->first = (elm)->field.next; \
- } \
- else { \
+ if ((head)->last = (elm)) \
+ (head)->last = NULL; \
+ } else { \
typeof(elm) curelm = (head)->first; \
while (curelm->field.next != (elm)) \
curelm = curelm->field.next; \
curelm->field.next = (elm)->field.next; \
+ if ((head)->last == curelm->field.next) \
+ (head)->last = curelm; \
} \
- if ((head)->last == elm) \
- (head)->last = NULL; \
} while (0)
#endif /* _ASTERISK_LINKEDLISTS_H */