stephenfewer / grinder

Grinder is a system to automate the fuzzing of web browsers and the management of a large number of crashes.
BSD 3-Clause "New" or "Revised" License
415 stars 131 forks source link

IE 11 Unable to resolve jscript9!StrToDbl #18

Closed albulir closed 10 years ago

albulir commented 10 years ago

Recent Windows update clobbered resolution of StrToDbl..

IE 11 Unable to resolve jscript9!StrToDbl

Raed.

debasishm89 commented 10 years ago

having same issue.. :( I was wondering,whether it will affect test case logging in any way??

stephenfewer commented 10 years ago

Yup, recent patch Tuesday updated jscript9.dll and MS havent released the public PDB for it on their symbol servers yet. We can verify with WinDbg:

0:024> !sym noisy
noisy mode - symbol prompts on
0:024> .reload /f "JSCRIPT9.DLL"
SYMSRV:  d:\symbols\jscript9.pdb\55EE0BA30FCD40FB8DDB914AB180717A2\jscript9.pdb not found
SYMSRV:  http://msdl.microsoft.com/download/symbols/jscript9.pdb/55EE0BA30FCD40FB8DDB914AB180717A2/jscript9.pdb not found
DBGHELP: C:\Windows\SysWOW64\jscript9.pdb - file not found
DBGHELP: jscript9.pdb - file not found
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Windows\SysWOW64\jscript9.dll - 
DBGHELP: jscript9 - export symbols

Solutions are as follows:

debasishm89 commented 10 years ago

Thanks!