summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-11-09 19:18:18 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-11-09 19:18:18 +0000
commit37278a0fa5a4b65df1254e49e376301bc250cec8 (patch)
treee155a639ba5e8fae3eb276a70f663f256406b484 /render
parentee675539e0207cde468e56e0e0b884704d88c97d (diff)
downloadnetsurf-37278a0fa5a4b65df1254e49e376301bc250cec8.tar.gz
netsurf-37278a0fa5a4b65df1254e49e376301bc250cec8.tar.bz2
Don't care about chunk sizes.
svn path=/trunk/netsurf/; revision=5671
Diffstat (limited to 'render')
-rw-r--r--render/html.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/render/html.c b/render/html.c
index 30b7c7949..355885b1d 100644
--- a/render/html.c
+++ b/render/html.c
@@ -173,7 +173,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size)
const char *encoding;
for (x = 0; x + CHUNK <= size; x += CHUNK) {
- LOG(("Parsing %d bytes", CHUNK));
err = binding_parse_chunk(c->data.html.parser_binding,
(uint8_t *) data + x, CHUNK);
if (err == BINDING_ENCODINGCHANGE) {
@@ -183,7 +182,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size)
gui_multitask();
}
- LOG(("Parsing %lu bytes", (size - x)));
err = binding_parse_chunk(c->data.html.parser_binding,
(uint8_t *) data + x, (size - x));
if (err == BINDING_ENCODINGCHANGE) {
@@ -194,8 +192,6 @@ bool html_process_data(struct content *c, char *data, unsigned int size)
encoding_change:
- LOG(("Changing encoding"));
-
/* Retrieve new encoding */
encoding = binding_get_encoding(
c->data.html.parser_binding,