[Issue 5704] Silent ddoc failure on plot2kill

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Mar 5 13:50:11 PST 2011


http://d.puremagic.com/issues/show_bug.cgi?id=5704



--- Comment #2 from David Simcha <dsimcha at yahoo.com> 2011-03-05 13:47:13 PST ---
Built the debug version, ran it under Windbg.  Here's the output:

Module Load: D:\DMD2\WINDOWS\BIN\DMD.EXE  (symbol loading deferred)
Thread Create:  Process=0, Thread=0
Module Load: C:\Windows\system32\NTDLL.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\KERNEL32.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\KERNELBASE.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\SHELL32.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\MSVCRT.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\SHLWAPI.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\GDI32.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\USER32.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\ADVAPI32.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\SECHOST.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\RPCRT4.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\SSPICLI.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\CRYPTBASE.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\LPK.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\USP10.DLL  (symbol loading deferred)
Module Load: C:\Windows\system32\NTDLL.DLL  (no symbols loaded)
Module Load: C:\WINDOWS\SYSWOW64\IMM32.DLL  (symbol loading deferred)
Module Load: C:\WINDOWS\SYSWOW64\MSCTF.DLL  (symbol loading deferred)
Module Load: D:\DMD2\WINDOWS\BIN\DMD.EXE  (symbols loaded)
Thread Create:  Process=0, Thread=1
Thread Terminate:  Process=0, Thread=1, Exit Code=0
First chance exception c0000005 (Unknown) occurred

The function that the exception appears to occur in is:

TemplateParameter *TemplateThisParameter::syntaxCopy()
{
    TemplateThisParameter *tp = new TemplateThisParameter(loc, ident, specType,
defaultType);
    if (tp->specType)
        tp->specType = specType->syntaxCopy();  // This line is highlighted.
    if (defaultType)
        tp->defaultType = defaultType->syntaxCopy();
    return tp;
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list