Github user jpeach commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/541#discussion_r57665750 --- Diff: proxy/hdrs/URL.cc --- @@ -1158,9 +1158,51 @@ url_parse_scheme(HdrHeap *heap, URLImpl *url, const char **start, const char *en return PARSE_ERROR; // no non-whitespace found } +static bool +url_init_non_encoded_char_array(char *non_encoded_char, size_t size) +{ + const char *allowed_char = ":/?#[]@" // gen-delims + "!$&'()*+,;=" // sub-delims + "ABCDEFGHIJKLMNOPQRSTUVWXYZ" // ALPHA + "abcdefghijklmnopqrstuvwxyz" + "0123456789" // DIGIT + "-._~" // other unreserved + "%"; // '%' should also not be encoded + + memset(non_encoded_char, 0, size); --- End diff -- You don't need to init BSS data (see other comment about initialization).
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---