Fix another clusterfuzz identified issue (#15096)
* Fix another clusterfuzz identified issue Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
e6377d5eb4
commit
a587a28434
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ func (ctx *postProcessCtx) postProcess(rawHTML []byte) ([]byte, error) {
|
|||
_, _ = res.WriteString("<html><body>")
|
||||
|
||||
// Strip out nuls - they're always invalid
|
||||
_, _ = nulCleaner.WriteString(res, string(tagCleaner.ReplaceAll(rawHTML, []byte("<$1"))))
|
||||
_, _ = res.Write(tagCleaner.ReplaceAll([]byte(nulCleaner.Replace(string(rawHTML))), []byte("<$1")))
|
||||
|
||||
// close the tags
|
||||
_, _ = res.WriteString("</body></html>")
|
||||
|
|
Reference in a new issue