From: Ak on
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
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
"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
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
"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