crash

App crashes with EXC_CRASH (SIGABRT) in Titanium's TableView

I'm on Titanium 1.2.1 using SDK 4.0 compiling to a device with 3.1.3. This crash doesn't manifest itself in the simulator, but only on the device. I have a tableView listing a list of contacts. When clicking on a contact name, it opens a new heavyweight window (in a different execution context). The new window shows details of the contac...

Reasons why my Android App would crash on my phone consistently, but not on my emulator

I have an app that uses quite a few graphics in it. When I open and close my app repeatedly on my emulator (1.5 - 2.2) it runs fine and by checking the heap I can see everything is being cleaned and gc'd properly. However, when I run my app on an HTC Aria phone (2.1) the app crashes every time I try to re-open it. When I look at the h...

Android - how to make sure my Service is restarted?

I have an Android application with a background running Service. When the Service crashes or gets killed by Android I can see that Android tries to restart it again. However the Service never actually restarts, I can see Android scheduling the restart but it new actually happens. My code is as follows: @Override public void onCreat...

Ways for an unmanaged Windows process to crash?

I am trying to understand the ways in which an unmanaged user-mode Windows process can "crash" (which is really too much of a catch-all term). Here are the ways I know of so far: Unhandled Structured Exception Default UnhandledExceptionFilter: postmortem debugger in pre-Vista; WerFault in Vista+ Custom UnhandledExceptionFilter: may d...

mac osx and flash

I recently updated my mac osx(security update I think) and since then flash cs4 started to crash. I looked on the web and some people suggested deactivating Franklin Gothic font. I did that. Even uninstall and reinstalled the Flash cs4 itself and still it keeps on crashing. One wired thing that I found is that it doesn't crash when I ope...

Understanding (symbolized) iOS crash log

Hi, This is a continuation to my previous attempt to resolve a pesky issue affecting a few instances of my app. The problem happens on a few iPads only, but as you know, these are the ones who take their time to leave a nice, thoughtful review :-/ Anywho, I finally got the crash log symbolized properly, and it is pointing to: Nonograms...

Cleanest way to explicitly crash an application?

My application has custom crash-handling built-in (see John Robbins' excellent book about "Debugging Windows Applications"). To test this functionality, I always used the Windows function DebugBreak() and this always worked perfectly. But since Windows 7, calling this function just says "A breakpoint has been reached" and stops the app...

Delphi 2007 IDE crashes when I try to use "Find References" under Search menu.

After upgrading to Windows 7 all seems to work in my Delphi 2007 version except this one. I know that 2007 is not build for win 7 but I'm not sure that the OS is the reason. My friend is using it without a problem. When I use "Find Local References" all is fine. Do you know a fix for this? Some dll registration may be? ...

How do I disable werfault.exe for my app?

I have to run this program millions of times. It's not the most stable beast, and it crashes around 5% of the time. When this happens, I don't want a popup, or WerFault to take 30 sec to take a dump, or anything - I just want it to silently and immediately disappear, and I'll figure out it crashed from the process exit code. I alrea...

Exception text in crash log?

I have received a crash log from a beta tester. The crash log was only partially symbolicated (don't know why), but it is caused by an exception: 9 libobjc.A.dylib 0x000048cc objc_exception_throw + 64 10 CoreFoundation 0x0009be8a +[NSException raise:format:arguments:] + 62 11 CoreFoundation ...

kill application after crash

I haven't manage all errors on my application anymore. So I would like to know if it is possible to Kill the entire app when it crashes? (when the message "app MyApp crash, force close" appear, I would like the application to be killed when user clicks on "force close") ...

How to get Android crash logs?

I have an app that is not in the market place (signed with a debug certificate), but would like to get crash log data, whenever my application crashes. Where can I find a log of why my app crashed? ...

Unexplainable NSUndoManager crash / assert in Cocoa app

Hi. I'm having a weird issue, with a Cocoa, OpenGL application I am working on. Whenever I launch my application I am getting the following messages / assertion failure on the console, related to eh NSUndoManager. I am not using the undo manager, by the way. 2010-09-05 03:28:49.184 CocoaCoreTest[51721:a0f] *** Assertion failure in +[NS...

Jquery Ajax calls crashing Internet Explorer?

I must admit, this is my first post on this site, so I apologise in advice if I do something wrong (formatting etc). Anyway, I'm creating a kind of mmo using javascript (and jQuery), and so far everything is running fine in Chrome, Safari, Firefox, etc. However, I've found that somewhere along the line, Internet Explorer crashes. By ...

Objc memory crash with autorelase

I have been hunting all over my code and can't find the source of this crash: I am trying to decode an object with an NSKeyedUnarchiver and it crashes on it every time and says: *** __NSAutoreleaseFreedObject(): release of previously deallocated object (0x1008ad200) ignored *** __NSAutoreleaseFreedObject(): release of previously deallo...

iPhone customized view before crash

Hello, I have a view in my app which says something like "sorry for the crash, please restart the app", and I'd like to show it after crash. so is there any general way I can detect a crash that is about to happen and show the view before it does? Thank you. ...

iPhone function to create UILabel fails and crashes

I have a view with a scrollview. I use code to add labels to the scrollview. Since there's a lot of redundant code, I tried to move the label creation to a separate function that returns a UILabel. Here' that function: - (UILabel *) f_MakeLabelWithL:(float)MyLeft T:(float)MyTop W:(float)MyWidth H:(float)MyHeight Align:(UITextAlignment...

iPad crash and probably related memory problems

Hello folks, I am porting PC game to iPad which has ton of graphic assets (over 250MB) and I am about half-way through. I didn't have iPad until now so I tested it only on simulator and everything was fine. But when I run it on device for first time, it crashed. All I got from console is Program received signal: “0”. Data Formatters...

My app just crashed, how can I get the crash log?

I am testing my app on my actual device, and it seems like there is a memory leak. The app has crashed after a couple of hours. How can I pull up the log of the crash? I plugged my phone in via USB and tried: adb logcat -v but I get the following message in my terminal: - waiting for device - error: more than one device and emulator...

Does Android kill local variables after some time?

I seem to be getting a crash after a long period of time on my device: E/AndroidRuntime( 1115): FATAL EXCEPTION: main E/AndroidRuntime( 1115): java.lang.RuntimeException: Unable to resume activity {org.stocktwits.activity/org.stocktwits.activity.Main}: java.lang.NullPointerException E/AndroidRuntime( 1115): at android.app.ActivityThr...