Don't care about chunk sizes.

svn path=/trunk/netsurf/; revision=5671
This commit is contained in:
John Mark Bell 2008-11-09 19:18:18 +00:00
parent ee675539e0
commit 37278a0fa5
1 changed files with 0 additions and 4 deletions

View File

@ -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,