Tagged Questions

7
votes
2answers
307 views

Debugging .Net String value in windbg

I have a .Net application dump which captured an exception, I'm analysing using windbg and interested in the value of a String parameter on one of the methods. I've isolated the String object. My ...
3
votes
4answers
515 views

Step execution of release code / post-mortem debugging (VS/C++)

Is there any sense to step-execute release code? I noticed that some lines of code are omitted, i.e. some method calls. Also variable preview doesn't show some variables and shows invalid (not real) ...
2
votes
1answer
484 views

Including WinDbg in the vsjitdebugger list

Is it possible to include WinDbg in the list of debuggers shown by vsjitdebugger when the latter is configured as the default debuuger in HKLM...\AeDebug? Ideally I would like to be able to include a ...
1
vote
1answer
128 views

Problem debugging hang-dump in windbg

After I've loaded sosex, I'm getting the following error. Any ideas? The hang dump is from a 32 bit machine, mine is 64-bit. Do I need to install something? !clrstack CLR DLL status: ERROR: ...
1
vote
2answers
353 views

windbg.exe: Failed to load data access DLL, 0x80004005

I'm trying to debug a 32 bit process dump from a process that ran on an x64 machine. I'm running an x86 version of windbg on my x64 laptop. I've followed the recommendations here, but I'm still ...
1
vote
2answers
231 views

Track down stack trace that created object in Windbg

I'm trying to track down a memory leak in a C++ application in Windows and I've got a memory dump of the application with a large number of leaked objects. I'm using Windbg to track them down by doing ...
1
vote
4answers
520 views

Post-mortem crash-dump debugging without having the exact version of a Windows DLL in the Symbol Server

Within my application, I use the MiniDumpWriteDump function (see dbghelp.dll) to write a crash dump file whenever my application crashes. I also use a symbol server to store all my executables and ...
1
vote
4answers
617 views

Help postmorten debugging of a mixed mode Win32 application

Here's the situation: Background I have a mixed mode .NET/Native application developed in Visual Studio 2008. What I mean by mixed mode is that the front end is written in C++ .NET which calls ...
0
votes
1answer
335 views

GDB: how to see what memory addresses are accessible?

Suppose, in a debugging session I have an address which unfortunately points to some rubbish. And I want to examine memory around it to see what's located near. As expected, the following error ...
0
votes
0answers
201 views

.Net 1.1 Application - Stack Overflow - Slient shutdown - Dataset bug?

Im a developer for a major company and we are facing a nasty crash scenario. Some background the application is fundamentally a message processing system. The aplication has a large in memory ...