Hello Tolga,

It seems to be a missing break - see the attached patch.

Thanks and Regards,

Bogdan-Andrei Iancu
OpenSIPS Founder and Developer
http://www.opensips-solutions.com


On 05/28/2013 01:35 AM, Tolga Tarhan wrote:
> On a related note, however, is this of any concern:
>
> May 27 15:35:02 b2b-dev1 /usr/sbin/opensips[19455]:
> CRITICAL:b2b_logic:b2bl_drop_entity: we should never end up here
>
> Or for that matter, any of these:
>
> May 27 15:35:22 b2b-dev1 /usr/sbin/opensips[19455]:
> WARNING:b2b_logic:b2bl_delete_entity: entity [0x7f8840c171d8]->[] not
> found for tuple [383.0]
> May 27 15:35:19 b2b-dev1 /usr/sbin/opensips[19458]:
> ERROR:b2b_logic:process_bridge_negreply: unexpected entity_no [2] for
> tuple [0x7f8840c19378]
> May 27 15:35:19 b2b-dev1 /usr/sbin/opensips[19458]:
> ERROR:b2b_logic:b2b_logic_notify_reply: Failed to process negative
> reply while in bridging state
>
>
> --
> Tolga
>
diff --git a/modules/b2b_logic/records.c b/modules/b2b_logic/records.c
index 305a16b..8ad0f92 100644
--- a/modules/b2b_logic/records.c
+++ b/modules/b2b_logic/records.c
@@ -374,6 +374,7 @@ int b2bl_drop_entity(b2bl_entity_id_t* entity, b2bl_tuple_t* tuple)
 							LM_ERR("inconsistent tuple [%p]->[%.*s]\n",
 							tuple, tuple->key->len, tuple->key->s);
 					}
+					break;
 				default:
 					LM_CRIT("we should never end up here\n");
 			}
_______________________________________________
Users mailing list
[email protected]
http://lists.opensips.org/cgi-bin/mailman/listinfo/users

Reply via email to