[sr-dev] git:master:0fbcca38: core: clist - restet prev/next when removing from clist slot
Daniel-Constantin Mierla
miconda at gmail.com
Thu Nov 5 08:59:36 CET 2015
Module: kamailio
Branch: master
Commit: 0fbcca38574139f1cd8ba7506ee5e204be5f2da7
URL: https://github.com/kamailio/kamailio/commit/0fbcca38574139f1cd8ba7506ee5e204be5f2da7
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2015-11-05T08:59:23+01:00
core: clist - restet prev/next when removing from clist slot
---
Modified: clist.h
---
Diff: https://github.com/kamailio/kamailio/commit/0fbcca38574139f1cd8ba7506ee5e204be5f2da7.diff
Patch: https://github.com/kamailio/kamailio/commit/0fbcca38574139f1cd8ba7506ee5e204be5f2da7.patch
---
diff --git a/clist.h b/clist.h
index 2f1f8b5..2b796e6 100644
--- a/clist.h
+++ b/clist.h
@@ -87,7 +87,9 @@
#define clist_rm_sublist(s, e, next, prev) \
do{\
(s)->prev->next=(e)->next; \
- (e)->next->prev=(s)->prev ; \
+ (e)->next->prev=(s)->prev; \
+ (s)->prev=NULL; \
+ (e)->next=NULL; \
}while(0)
More information about the sr-dev
mailing list