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
3
votes
3 answers

How can I prevent Lion to display the Do you want to restore your windows after a crash

On lion after each crash when I start the app Lion asks if I want it to restore the application windows since it did not terminate properly last time, how can I disable this? BACKGROUND: I am developing a Cocoa app for Lion (and Snow Leopard), it…
Ali
  • 18,665
  • 21
  • 103
  • 138
3
votes
1 answer

Heroku dyno/worker crashes at start

I have an application written in Rails, deployed on Heroku. I used to have been working on 1 web dyno, but today I have published the app, the traffic is quite big so I decided to increase to 4 web dynos and 1 worker dynos. I don't know why always…
Maciek Simm
  • 580
  • 1
  • 5
  • 13
3
votes
3 answers

Object released with CFRelease causes obvious crash, but only rarely

I have the following method: + (NSString*) getMD5HashFromFile:(NSString*)filePath { CFStringRef md5hash = FileMD5HashCreateWithPath((CFStringRef)filePath, FileHashDefaultChunkSizeForReadingData); NSString *hashStr = (NSString*)md5hash; …
dimitrios
  • 469
  • 5
  • 15
3
votes
1 answer

iOS - App crash When I open the app from background (idle) mode for long time?

when I opened the app, let it run in background mode for long time, opened again and then it crashed again shortly after.The crash logs indicating that this crashed is caused by MapKit framework.It's only happen in device.... Can anyone make sense…
Deepesh
  • 8,065
  • 3
  • 28
  • 45
3
votes
3 answers

Why do I get an invalid block crash when deleting objects involved in multiple (virtual) inheritance?

I'm editing this question to make it more readable and less contrived. I've managed to replicate my issue with the following short piece of code. The question, then, is: why does this crash on an assertion failure with…
3
votes
0 answers

How to handle this titanium webservice error?

I'm facing a error in the titanium whenever calling a SOAP webservice. [ERROR] Error Domain=com.google.GDataXML Code=-1 "The operation couldn't be completed. (com.google.GDataXML error -1.)". in -[TiDOMDocumentProxy parseString:]…
Prateek Raj
  • 3,966
  • 6
  • 39
  • 50
3
votes
1 answer

XCode 4.3 crashes when adding Tab Bar Item (UITabBar)

Is anyone else having this issue when trying to add UITabBar item into an existing Tab Bar? Xcode simply freezes while the tab bar item is being dragged out from the object library, and then crashes.
iancormac
  • 83
  • 5
3
votes
5 answers

IDLE crash when opening on Mac OS X

I recently attempted to install python 3.2 along with IDLE 3 on my macbook pro. I successfully installed python 3.2 (as in, I can run it from the terminal), but when I attempted to install IDLE 3.2 I must have done something wrong because now both…
drewlaqua
  • 101
  • 2
  • 6
3
votes
6 answers

Java crash outside JVM - works on Windows not on Linux

I am using OpenNLP and my English NameFinder on Linux (CentOS 5.3,Java 1.6.0_13) keeps giving me this error: An unexpected error has been detected by Java Runtime Environment: SIGSEGV (0xb) at pc=0x0657e436, pid=3484, tid=2291964816 Java VM: Java…
AAltemus
3
votes
1 answer

Eclipse crashing, getting heap exceptions - Out of Memory when trying to deploy an Android applicaiton

I have one Android project that crashes when it is deployed. Other projects in the same workspace work fine. I increased the RAM usage on the AVD that I'm using to 1 GB. I don't think there is a memory leak because it seems to work on other…
user1164429
  • 241
  • 5
  • 16
3
votes
1 answer

PresentViewController crash on iOS 4.3 but not on iOS 5

Can anyone tell me why this code crashes with SIGABRT unrecognised selector sent to instance, on 4.3 simulator, but works just fine on iOS 5 simulator? matchSetup = [[viewMatchSetup alloc]initWithNibName:@"viewMatchSetup" bundle:nil]; [matchSetup…
Dann
  • 323
  • 5
  • 17
3
votes
2 answers

App Crash on iOS 5

I have been using Mobclix in my application and haven't experienced any issues until yesterday when I received a crash report from TestFlight which appears to have been caused by Mobclix. I was wondering if anyone could shed any light on the…
3
votes
2 answers

Android Gallery crashes because of memory usage

In my app we are using a gallery for photos , taken from android dev (http://developer.android.com/resources/tutorials/views/hello-gallery.html) .It loads all the photos from /sdcard/DCIM (all subdirectories). Althought we have made it resample the…
Panos
  • 7,227
  • 13
  • 60
  • 95
3
votes
1 answer

How to find root cause of Application Crash in Windbg?

I have an application which crashes upon a specific action taken by the user. For instance, when I click on a specific button in the application, it crashes. So, I attached windbg to this application and then performed the same operation which would…
Neon Flash
  • 3,113
  • 12
  • 58
  • 96
3
votes
2 answers

Recover from instruction that sets EIP=00000000

Whilst messing around with some x86 asm, I got to wondering about cases where a bug has caused EIP to be set to 00000000, or another memory location that does not exist. Is it possible to catch these cases with SEH or similar error handling…
Polynomial
  • 27,674
  • 12
  • 80
  • 107
1 2 3
99
100