@ggontariu commented on this pull request.


In src/modules/dialog/dialog.c:

> @@ -2602,6 +2602,26 @@ static int ki_dlg_var_is_null(sip_msg_t *msg, str *name)
 	return -1;
 }
 
+/**
+ *
+ */
+static int ki_dlg_req_within4(struct sip_msg *msg, char *side, char *method,
+		char *content_type, char *content)
+{
+	dlg_cell_t *dlg;
+	int ret;
+
+	dlg = dlg_get_msg_dialog(msg);
+	if(dlg == NULL) {
+		return 1;
+	}
+	ret = w_dlg_req_with_content(dlg, side, method, content_type, content);

fixed


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <kamailio/kamailio/pull/4245/review/2860220125@github.com>