tfix bug in ignoring character in <style> or <script> - webdump - [FORK] git://git.codemadness.org/webdump
(HTM) git clone git://git.z3bra.org/webdump.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit ba6a6e188dd51d566586c46a21b296d9319fa149
(DIR) parent ce36531a689dad978e803008ff0600aa7984e380
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sun, 22 Sep 2019 19:48:35 +0200
fix bug in ignoring character in <style> or <script>
Diffstat:
M webdump.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/webdump.c b/webdump.c
t@@ -157,7 +157,7 @@ getnext_ignore(void)
ignorestate++;
if (*ignorestate == '\0') {
parser.getnext = getnext; /* restore */
- return c;
+ return ' ';
}
} else {
ignorestate = endtag;