Commit 202a2ab7 authored by Joris Huizer's avatar Joris Huizer Committed by Alexandre Julliard

mshtml: Increment pointer as intended.

parent a6d28bcc
...@@ -122,6 +122,7 @@ static BOOL handle_insert_comment(HTMLDocument *doc, const PRUnichar *comment) ...@@ -122,6 +122,7 @@ static BOOL handle_insert_comment(HTMLDocument *doc, const PRUnichar *comment)
majorv = majorv*10 + (*ptr++ - '0'); majorv = majorv*10 + (*ptr++ - '0');
if(*ptr == '.') { if(*ptr == '.') {
ptr++;
if(!isdigitW(*ptr)) if(!isdigitW(*ptr))
return FALSE; return FALSE;
while(isdigitW(*ptr)) while(isdigitW(*ptr))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment