Prev: Revenge of the com_ms_osp_ospmrshl_releaseByValExternal error
Next: Trusted sites, Restricted sites, and Local Intranet sites
From: Ak on 13 Oct 2006 00:37 Hello , I am developing a website and IE 6.0 Crashes .This page is based on dynamic html and AJAx. I don't get any javascript errors .I have used firebug ato try to find the any javascript error. But with Visual Studio, I can see in the debugger that it crashes at CTreeNode::GetInterface. I get this error when i try to step through the debugger. Any idea about this issue? I think its a IE bug ,but its hard to even find more about the IE. Unhandled exception at 0x7dca978f (mshtml.dll) in IEXPLORE.EXE: 0xC0000005: Access violation reading location 0x00000000.
From: Ak on 13 Oct 2006 00:54 Here is the call stack mshtml.dll!CBaseFT::Release() + 0x10b5e bytes mshtml.dll!CImgCtx::Release() + 0x10 bytes mshtml.dll!CImgHelper::OnDwnChan() + 0x65a3f bytes mshtml.dll!CImgHelper::OnDwnChanCallback() + 0x10 bytes mshtml.dll!CDwnChan::OnMethodCall() + 0x19 bytes mshtml.dll!GlobalWndOnMethodCall() + 0x66 bytes mshtml.dll!GlobalWndProc() + 0xe5 bytes user32.dll!_InternalCallWinProc(a)20() + 0x28 bytes user32.dll!_UserCallWinProcCheckWow(a)32() + 0xb7 bytes user32.dll!_DispatchMessageWorker@8() + 0xdc bytes user32.dll!_DispatchMessageW@4() + 0xf bytes browseui.dll!TimedDispatchMessage() + 0x33 bytes browseui.dll!BrowserThreadProc() + 0x336 bytes browseui.dll!BrowserProtectedThreadProc() + 0x50 bytes browseui.dll!_SHOpenFolderWindow@4() + 0x22c bytes shdocvw.dll!_IEWinMain@8() + 0x129 bytes IEXPLORE.EXE!WinMainT() + 0x2de bytes IEXPLORE.EXE!__ModuleEntry@0() + 0x99 bytes kernel32.dll!_BaseProcessStart@4() + 0x23 bytes "Ak" wrote: > Hello , > I am developing a website and IE 6.0 Crashes .This page is based on dynamic > html and AJAx. I don't get any javascript errors .I have used firebug ato try > to find the any javascript error. But with Visual Studio, I can see in the > debugger that it crashes at CTreeNode::GetInterface. I get this error when i > try to step through the debugger. > Any idea about this issue? I think its a IE bug ,but its hard to even find > more about the IE. > Unhandled exception at 0x7dca978f (mshtml.dll) in IEXPLORE.EXE: 0xC0000005: > Access violation reading location 0x00000000.
From: photog on 13 Oct 2006 18:06 "Ak" <Ak(a)discussions.microsoft.com> wrote in message news:7F7DFE74-2552-4125-BBAF-A869D322CD5D(a)microsoft.com... > Hello , > I am developing a website and IE 6.0 Crashes .This page is based on dynamic > html and AJAx. I don't get any javascript errors .I have used firebug ato try > to find the any javascript error. But with Visual Studio, I can see in the > debugger that it crashes at CTreeNode::GetInterface. I get this error when i > try to step through the debugger. > Any idea about this issue? I think its a IE bug ,but its hard to even find > more about the IE. > Unhandled exception at 0x7dca978f (mshtml.dll) in IEXPLORE.EXE: 0xC0000005: > Access violation reading location 0x00000000. Do you have a test site URL? photog
From: Milos Stanic on 16 Oct 2006 03:36 This is probably why it crashes: http://seclists.org/bugtraq/2005/May/0330.html The friggin IE can't handle the window.onload() event. Amazing, really.
From: photog on 17 Oct 2006 12:11
"Milos Stanic" <milos.stanic(a)gmail.com> wrote in message news:1160984218.785339.314430(a)h48g2000cwc.googlegroups.com... > This is probably why it crashes: > http://seclists.org/bugtraq/2005/May/0330.html > > The friggin IE can't handle the window.onload() event. > Amazing, really. Agreed. Omit window and the onload event will work. photog |