commit 70baff952904c08d052331997f5e47146f672f42 from: Omar Polo date: Fri Sep 30 10:45:35 2022 UTC fix crash if path is NULL commit - 5586087cee29f04779e6998b464d33c1fb4235a9 commit + 70baff952904c08d052331997f5e47146f672f42 blob - 12121d55c13c8b7a7fed84a1d5d9ac1da19d43ce blob + cc4e3c2e84c64203e3c6cfa9b89bf82b798e29c1 --- fragments.tmpl +++ fragments.tmpl @@ -68,6 +68,9 @@ struct proxy_config *pc = clt->clt_pc; const char *host = pc->proxy_name; const char *path = clt->clt_path_info; + + if (path == NULL) + path = ""; !}