From 571125455eb97fc6473e9e16b9598f24204e64a7 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 21 Oct 2009 22:45:30 +0200 Subject: [PATCH] jscript: Fixed replace string parsing. Reported by Dan Kegel. --- dlls/jscript/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/jscript/string.c b/dlls/jscript/string.c index 2e48d5be7fe..97c807f6afc 100644 --- a/dlls/jscript/string.c +++ b/dlls/jscript/string.c @@ -965,7 +965,7 @@ static HRESULT String_replace(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DI } idx = ptr2[1] - '0'; - if(isdigitW(ptr[3]) && idx*10 + (ptr[2]-'0') <= parens_cnt) { + if(isdigitW(ptr2[2]) && idx*10 + (ptr2[2]-'0') <= parens_cnt) { idx = idx*10 + (ptr[2]-'0'); ptr = ptr2+3; }else if(idx && idx <= parens_cnt) {