[Asterisk-code-review] res_pjsip_pubsub: XML sanitized RLS display name (asterisk[master])
Friendly Automation
asteriskteam at digium.com
Wed Jun 8 20:48:54 CDT 2022
Friendly Automation has submitted this change. ( https://gerrit.asterisk.org/c/asterisk/+/18641 )
Change subject: res_pjsip_pubsub: XML sanitized RLS display name
......................................................................
res_pjsip_pubsub: XML sanitized RLS display name
ASTERISK-29891
Change-Id: Ic8c9697e616446e06e6302653eae902aa23372ad
---
M res/res_pjsip_pubsub.c
1 file changed, 3 insertions(+), 1 deletion(-)
Approvals:
Joshua Colp: Looks good to me, but someone else must approve
Kevin Harwell: Looks good to me, approved
Friendly Automation: Approved for Submit
diff --git a/res/res_pjsip_pubsub.c b/res/res_pjsip_pubsub.c
index 5cccdcc..a0fe273 100644
--- a/res/res_pjsip_pubsub.c
+++ b/res/res_pjsip_pubsub.c
@@ -2070,6 +2070,7 @@
pj_xml_attr *cid_attr;
char id[6];
char uri[PJSIP_MAX_URL_SIZE];
+ char name_sanitized[PJSIP_MAX_URL_SIZE];
/* This creates a string representing the Content-ID without the enclosing < > */
const pj_str_t cid_stripped = {
@@ -2084,7 +2085,8 @@
pjsip_uri_print(PJSIP_URI_IN_CONTACT_HDR, resource_uri, uri, sizeof(uri));
ast_sip_presence_xml_create_attr(pool, resource, "uri", uri);
- pj_strdup2(pool, &name->content, resource_name);
+ ast_sip_sanitize_xml(resource_name, name_sanitized, sizeof(name_sanitized));
+ pj_strdup2(pool, &name->content, name_sanitized);
ast_generate_random_string(id, sizeof(id));
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/18641
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Change-Id: Ic8c9697e616446e06e6302653eae902aa23372ad
Gerrit-Change-Number: 18641
Gerrit-PatchSet: 2
Gerrit-Owner: Alexei Gradinari <alex2grad at gmail.com>
Gerrit-Reviewer: Friendly Automation
Gerrit-Reviewer: Joshua Colp <jcolp at sangoma.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20220608/9cfdc971/attachment.html>
More information about the asterisk-code-review
mailing list