diff --git a/libs/sofia-sip/.update b/libs/sofia-sip/.update index d785850102..8f426572b4 100644 --- a/libs/sofia-sip/.update +++ b/libs/sofia-sip/.update @@ -1 +1 @@ -Mon Apr 24 12:31:01 CDT 2017 +Mon Jun 5 17:43:45 CDT 2017 diff --git a/libs/sofia-sip/libsofia-sip-ua/msg/msg_parser.c b/libs/sofia-sip/libsofia-sip-ua/msg/msg_parser.c index 48c30d46ec..16a3daa4f8 100644 --- a/libs/sofia-sip/libsofia-sip-ua/msg/msg_parser.c +++ b/libs/sofia-sip/libsofia-sip-ua/msg/msg_parser.c @@ -2017,7 +2017,7 @@ msg_header_t **serialize_one(msg_t *msg, msg_header_t *h, msg_header_t **prev) for (last = h; last->sh_succ; last = last->sh_succ) { /* Ensure that chain is connected */ assert(last->sh_next == last->sh_succ); - assert(last->sh_succ->sh_prev = &last->sh_succ); + assert(last->sh_succ->sh_prev == &last->sh_succ); } prev = &last->sh_succ; }