فهرست منبع

sanity: Prevent segfault

For star Contacts, there are no URIs that can be checked.
Bastian Triller 2 سال پیش
والد
کامیت
f1bac3433c
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      src/modules/sanity/sanity.c

+ 2 - 1
src/modules/sanity/sanity.c

@@ -820,7 +820,8 @@ int check_parse_uris(sip_msg_t* msg, int checks) {
 				}
 				return SANITY_CHECK_FAILED;
 			}
-			if (parse_uri(
+			if (!((struct contact_body*)msg->contact->parsed)->star
+					&& parse_uri(
 						((struct contact_body*)msg->contact->parsed)->contacts->uri.s,
 						((struct contact_body*)msg->contact->parsed)->contacts->uri.len,
 						&uri) != 0) {