From 202a2ab755046b984164d88e7ccfdc369aa12d7d Mon Sep 17 00:00:00 2001 From: Joris Huizer Date: Wed, 31 Dec 2008 17:16:23 +0100 Subject: [PATCH] mshtml: Increment pointer as intended. --- dlls/mshtml/mutation.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/mshtml/mutation.c b/dlls/mshtml/mutation.c index edd3dca4178..39948885c04 100644 --- a/dlls/mshtml/mutation.c +++ b/dlls/mshtml/mutation.c @@ -122,6 +122,7 @@ static BOOL handle_insert_comment(HTMLDocument *doc, const PRUnichar *comment) majorv = majorv*10 + (*ptr++ - '0'); if(*ptr == '.') { + ptr++; if(!isdigitW(*ptr)) return FALSE; while(isdigitW(*ptr))