]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/filters/mod_proxy_html.c (pcomment): Don't dump content
authorJoe Orton <jorton@apache.org>
Mon, 6 Jul 2026 10:04:52 +0000 (10:04 +0000)
committerJoe Orton <jorton@apache.org>
Mon, 6 Jul 2026 10:04:52 +0000 (10:04 +0000)
  when printing a comment. (regression in r1934975)

Fixes: 9dc00bf22922b805d780f403132d2e35a99ced93
Github: closes #681

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1935931 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_proxy_html.c

index 6e33eac46e9b369298820430f012c6932004b8a7..a8c29db862ad5558c4a3956ce67b04ccd4f49171 100644 (file)
@@ -337,7 +337,6 @@ static void pcomment(void *ctxt, const xmlChar *uchars)
         ap_fputs(ctx->f->next, ctx->bb, "<!--");
         AP_fwrite(ctx, chars, strlen(chars), 1);
         ap_fputs(ctx->f->next, ctx->bb, "-->");
-        dump_content(ctx);
     }
 }
 static void pendElement(void *ctxt, const xmlChar *uname)