Github user jpeach commented on a diff in the pull request:
https://github.com/apache/trafficserver/pull/1015#discussion_r78650646
--- Diff: plugins/experimental/url_sig/url_sig.c ---
@@ -561,7 +561,9 @@ TSRemapDoRemap(void *ih, TSHttpTxn txnp,
TSRemapRequestInfo *rri)
/* ********* Allow ********* */
allow:
- app_qry = getAppQueryString(query, strlen(query));
+ if (query != NULL) {
+ app_qry = getAppQueryString(query, strlen(query));
+ }
--- End diff --
So this is the case where the exclusion regex was matched so it is ok to
not have a query string?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---