From b4760da5d776ca41efb612f373b0545590ef4df3 Mon Sep 17 00:00:00 2001 From: Andrew Sidwell Date: Mon, 4 Aug 2008 00:46:18 +0000 Subject: Fix bug in hubbub & html5lib tests relating to parsing entities ending without semicolons in attribute values. svn path=/trunk/hubbub/; revision=4892 --- src/tokeniser/tokeniser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tokeniser/tokeniser.c b/src/tokeniser/tokeniser.c index a756a72..1f1ae40 100644 --- a/src/tokeniser/tokeniser.c +++ b/src/tokeniser/tokeniser.c @@ -2811,7 +2811,7 @@ bool hubbub_tokeniser_handle_named_entity(hubbub_tokeniser *tokeniser) return false; cptr = parserutils_inputstream_peek(tokeniser->input, - ctx->match_entity.offset + ctx->match_entity.length, + ctx->match_entity.offset + ctx->match_entity.length - 1, &len); c = CHAR(cptr); -- cgit v1.2.3