Questions tagged [crash]

A crash is the result of an unrecoverable error that causes the program to stop completely.

A crash is the result of an unrecoverable error that causes the program to stop completely. During software development, crashes can be avoided by implementing proper error and exception handling.

Another common source of crashes is improper memory management, especially for programming languages like or , that don't have a fully fledged automatic garbage collector, that detects no longer used memory automatically, and feeds it back as available.

13257 questions
4
votes
1 answer

dispatch_once call causes crash

dispatch_once call causes crash (in simulator) after I've converted my project to ARC. My original problem was that I've got EXC_BAD_ACCESS (in objc_retain call) crash in one of my singleton object's + (SingletonClass)shared { ...…
4
votes
2 answers

Crashes when running MySQL Connector/C++ from Visual Studio

I'm having a bit of issues with trying to run a compiled program that uses the MySQL connector, in C++. It compiles just fine, but when running it, it'll crash immediately - seemingly so on the line that's meant to connect. I've set up all…
mtaanquist
  • 506
  • 4
  • 16
4
votes
1 answer

Monotouch- Enable Guard Malloc

this is my first question on StackOverflow, hopefully it is a pertinent one! To try to put you in context, I have an odd crash in my application when I try to open the camera with the PresentViewController method. I tried looking into the crash…
airpaulg
  • 565
  • 3
  • 13
4
votes
2 answers

MySQL InnoDB tables corrupt -- how to fix?

While performing a conditional DELETE operation in one of my InnoDB tables, which apparently required some temporary table to be created in ibdata1, the hard disk filled up and mysql crashed. I couldn't get it to start again until I deleted the…
atp
  • 30,132
  • 47
  • 125
  • 187
4
votes
2 answers

ring0 APC DLL injection crash target process on win7

I am trying to implement a ring0 dll injector driver and implement by APC injection. the code work perfectly on win XP. by on win7, it keeps crashing the target process. here is the code: NTSTATUS InjectDll( IN ULONG ulProcessId, HANDLE hEvent, IN…
eeelin
  • 51
  • 1
  • 3
4
votes
2 answers

Xcode 4.5.2 keeps crashing on Mac OS X Mountain Lion?

I have been using Xcode with mac os x lion and I kept getting an error when trying to test my app on my ios device. I formatted my computer and upgraded to mountain lion and revoked all the apple developer certificates and provisions and started…
4
votes
2 answers

Android 2.3.4 Crashes on Camera.setParameters

I have a camera app that works on most phone but I got an error from a user today. The error says that the app crashes on Camera.setParameters() I have read This StackOverflow Post about the topic, but have that same solution already implemented.…
Chris
  • 5,485
  • 15
  • 68
  • 130
4
votes
3 answers

github for windows crashing several times a day

I newly started working on Github via their native Windows Application, it's quite good however it's crashing so often and the horrible thing is that I lose all the recent changes after it's crashing. All the local files will rollback to the last…
Mahdi
  • 9,247
  • 9
  • 53
  • 74
4
votes
1 answer

Qt creator crashes after choosing new project

Qt creator crashes after choosing new project (actually, when I just click on project that is below 3rd one) without errors. Some times there was internal Ubuntu error where was tag: qtcreator crashed with SIGABRT in raise().
Nikita Ponomarev
  • 163
  • 1
  • 2
  • 9
4
votes
4 answers

httperf buffer overflow detected when rate is high

I'm running httperf 0.9.0 (downloaded from Google Code) on Ubuntu 12.04.1 LTS 64-bit with 2CPU and 4GB RAM. I'm trying to benchmark web servers but encountered the following buffer overflow problem. Terminal command: httperf --timeout=5 --client=0/1…
Xiao Jia
  • 4,169
  • 2
  • 29
  • 47
4
votes
3 answers

LZMA SDK decompress for iOS (xcode) using too much RAM

I am trying to use the LZMA SDK in an iPhone/iPad app, my starting point was the LZMA example project for iPhone provided by Mo Dejong, available here: https://github.com/jk/lzmaSDK Original was here: http://www.modejong.com/iOS/lzmaSDK.zip (I tried…
tradergordo
  • 57
  • 1
  • 7
4
votes
1 answer

Cancel all modal transitions when presenting a new Controller

I am looking for a way to cancel all ongoing modal transition. I need to push a new view controller at any time of the life cycle of my app, therefore I can't rely on viewDidAppear delegate to start the presentation of this new view. When one modal…
Guy
  • 97
  • 1
  • 5
4
votes
2 answers

JVM crashes after migrating to 64bit

My application started crashing after we migrate it to 64bit. The crash is occuring every 2-3 days on our production linux server. We are using jdk1.6.0_15-x86_64. The crash is happening at the same place when my application uses the Xalan…
4
votes
3 answers

What to: Collect Information When Software Crashes

I notice that a lot of desktop apps ( such as Firefox, Google Chrome, VS 2008 etc) have a crash dump that can be sent to the software vendors for analysis purpose. I am intended to create such a crash dump myself. I am doing .Net What are the best…
Graviton
  • 81,782
  • 146
  • 424
  • 602
4
votes
2 answers

Automatically create Visual C++ crash dump

Is there a way to create a crash dump file automatically on application crash (on Windows OS), same as if I could save with Visual Studio debugger attached? That is, I want to be able to debug my application in Visual Studio with automatically…
Marc Andreson
  • 3,405
  • 5
  • 35
  • 51