I am trying to debug a minidump crash dump. How can I get to know the OS so that I may download related Microsoft Symbols?
I am using Visual studio and windbg.
Hi
I am a c++ programmer , I know little bit about java. I know that java programmers do not have to work with memory directly like C++. I also know that most crashes in C++ appliations are due to memory corruptions.
So can an application written in Java crash due to a memory related issue?
Thanks
We use Visual Studio 2008, with visual source safe v8. Lately, I seem to be getting a lot more crashes than usual, mainly when viewing history (comparing, etc.).
I have taken a screencapture of the series of dialog boxes that will always appear, leading up to the crash:
http://img529.imageshack.us/img529/1360/msvscrash.jpg
Does anyone know what…
My iPhone app is crashing for certain users in UK. I tried using UK timezone and their region format but couldn't reproduce the crash on my iPhone or emulator. Eventually got a crash report and I was able to symbolicate it. However, I have a hard time understanding the results. It appears thread 0 crashed in a system library. The only call from…
I am trying to figure out why iOS crash my application in the harsh way (no crash logs, immediate shudown with black screen of death with spinner shown for a while).
It happens when I render content for CALayer using Quartz. I suspected the memory issue (happens only when testing on the device), but memory logs, as well as instruments…
We recently upgraded our Open Directory Master & Replica to Mac OS X 10.6.4 Snow Leopard Server. We had a mismatched server FQDN & LDAP Search Base/Kerberos Realm, so we exported all users & groups, created the new Open Directory Master w/matching FQDN & Search Base/Realm, reimported users & groups, and re-bound…
I am relatively new to Mac OS X. I got my MacBook in January, and I have never experienced a new version of the operating system. I am wondering if I should simply upgrade my install to Snow Leopard. I come from Windows where it is advised to do a complete reformat. I would rather not do this, however, and I have a feeling that due…
All,
Over a period of time I have observed that fixing issues related to application crash is a discipline in itself. Some people have this nice way of attacking such problems. Ranging from Viewing the 'Event Viewer' to running Static/ Dynamic memory analysis tools to some of their 'personal favorites', these people have developed…
Hi,
I'm not entirely sure why this crash is happening and I'd like to get advice on the best way to deal with it.
My app has 3 buttons. Each button requests a different XML file from a server which is used to populate a table view.
If I rapidly press the buttons in sequence , button 1 button 2 button3 button 1 button 2 button3 …
why does this code crash?
is using strcat illegal on character pointers?
#include <stdio.h>
#include <string.h>
int main()
{
char *s1 = "Hello, ";
char *s2 = "world!";
char *s3 = strcat(s1, s2);
printf("%s",s3);
return 0;
}
please give a proper way with referring to both array and pointers.
I have programmed an Access Database program using Access 2007. I have a button that points to the event: DoCmd.SendObject acSendReport to have it email a PDF report (acFormatPDF). Everything works fine in the normal Access 2007 program, but when a user opens the program with Access 2007 Runtime, when clicking on this button it…
My question is related to my discovery of a reason for UINavigationController to crash. So I will tell you about the discovery first. Please bare with me.
The issue:
I have a UINavigationController as as subview of UIWindow, a rootViewController class and a custom MyViewController class. The following steps will get a…
Using the document provided by Apple to create an application preferences window that doesn't require any extra code, I seem to have triggered a crash that cannot be traced by me.
While the stuff from Apple is older, I believe I have the settings pretty much the same as shown here:
When I run my application (Hcode)…
I'm getting a crash when loading dsound.dll from another DLL in Windows 7. The following code crashes:
#include <Windows.h>
#include <mmreg.h>
#include <dsound.h>
#include <assert.h>
HRESULT (WINAPI *pDirectSoundEnumerateA)(LPDSENUMCALLBACKA pDSEnumCallback, LPVOID pContext);
HMODULE hDsound;…
Hi,
I have a piece of code that runs in debug mode in VS2008, C++.
The problem is that when I am debugging the code line by line, at a very weird point of the code, it crashes and says:
debug assertion faild.
Expression: _BLOCK_TYPE_IS_VALID(pHead-nBlockUse)
The crash point is on the first closed curly bracket…
Hello guys.
I had a server crash several days ago. I use Cacti to keep stats: at the time when the server crashed, a huge spike from Load 1 to Load 200 occurred, with over 800 processes in the run queue ( from 300 average).
Upon checking /var/log/httpd I notice this:
* glibc detected /usr/sbin/httpd: double…
I have a method as follows (from a class than implements TBB task interface - not currently multithreading though)
My problem is that two ways of accessing a vector are causing quite different behaviour - one works and the other causes the entire program to bomb out quite spectacularly (this is a plugin and…
Anybody can tell me why those code can make ie6 or ie8 compatible mode crash?
PS:I know,there is so many ways to avoid this satuation, but I just want to know why.
To avoid:
Change class="wrapper"--class="wrapper2" or other != "wrapper"
$('wrapper').style.overflow='visible'; --…
Our C#/COM/C++ application is crashing and I need help debugging it. Running with gflags enabled and WinDbg attached, we determined the crashes are caused by an access violation, but we haven't been able to narrow it down any…
We have a C# application, calling a simple C++ wrapper class, that then calls an existing C++ DLL. The C++ code is all VC++ 6.0.
We are getting inconsistent behaviour, but the crash, when it happens, always happens within…
This is a different situation than this question, as the solution provided doesn't work and the stack is different.
Periodical crash when I save data using coredata.
The stack trace isn't 100% clear on where this is…
this is my first question here so sorry if I do something wrong or this is too long. I have been reading this tutorial by Ray Wenderlich, I have modified it so it is flatter and gradually goes down hill. Basically I…