From 2372238b3af1dcbd07acbf1751907159eec0f9a4 Mon Sep 17 00:00:00 2001 From: Bogdan-Andrei Iancu Date: Tue, 1 Mar 2022 15:24:57 +0200 Subject: [PATCH] [proto_msrp] Clear priorities in ternary operator Again, thanks CI ! --- modules/proto_msrp/msrp_handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proto_msrp/msrp_handler.c b/modules/proto_msrp/msrp_handler.c index ef9da5089d7..739e80970c5 100644 --- a/modules/proto_msrp/msrp_handler.c +++ b/modules/proto_msrp/msrp_handler.c @@ -51,7 +51,7 @@ int register_req_handler( str *host_filter, int port_filter, return -1; hdl = pkg_malloc( sizeof(struct req_handler_filter) + - (host_filter && host_filter->len)?host_filter->len+1:0 ); + ((host_filter && host_filter->len)?host_filter->len+1:0) ); if (hdl==NULL) { LM_ERR("pkg malloc failed for new req handler filter\n"); return -1;