crash

Having issues with iPhone NSTimer invalidation.

Okay so I know I asked a similar question a while ago, but this is different. I now have two timers that go off on the TouchDown event of their respective buttons. On the TouchUpInside event I have respective code that tells each timer to [pressTimer invalidate] and pressTimer = nil. The problem that happens now since I added the second ...

Visual Studio 2010 crashed, after loading it again it opened the conversion wizard then some bad things happened

I was using Visual Studio 2010 and tried to go to a files definition, after about three minutes I found the application had crashed so I end-tasked it. Running the project again I was presented with the conversion wizard (the project was already in 2010 so that was a bit wierd), after going through all its steps it said the conversion ha...

iPhone app crashing on iPhone 3G iOS4

Hi, My iphone application is crashing on iPhone 3G with iOS4 device with some of the logs as below: 9 libobjc.A.dylib 0x00006504 objc_exception_throw + 104 10 CoreFoundation 0x000a3e08 -[NSObject(NSObject) doesNotRecognizeSelector:] + 92 11 CoreFoundation 0x000a32a4 ___forwarding___ ...

Java ProcessBuilder: Resultant Process Hangs

I've been trying to use Java's ProcessBuilder to launch an application in Linux that should run "long-term". The way this program runs is to launch a command (in this case, I am launching a media playback application), allow it to run, and check to ensure that it hasn't crashed. For instance, check to see if the PID is still active, an...

Crash (SIGSEGV) in Core Data internal methods

Hi, I got a crash report and the crashing thread's call stack all show Apple's code. From the looks of it, Core Data's undo manager is accessing an invalid pointer in -[NSManagedObject(_NSInternalMethods) _newSnapshotForUndo__] + 356. I've googled the point of crash and the only other similar crash log I found was from Sequel Pro cras...

How to modify the way a ForeignKey field is rendered in a Django admin page to avoid browser crash?

I have a Customer model which contains a ForeignKey to a Contact model. I have over 100,000 contacts in my DB and when I load the admin page for a specific customer, the dropdown menu for the contact is getting populated with ALL of the contacts in the database. This has recently, due to its shear length, started causing my Firefox to c...

Randomly crashing .net app in kernelbase.dll, running in 32 bit on Windows 7 64 bit

We have a customer running our 100% .NET product on a W7 64 bit machine. The app explicitely targets x86 so runs in 32 bit mode. On the customer's machine we get random crashes in kernelbase.dll. Sometimes it crashes even by just moving the mouse over the app. On other W7, 64 bit machines it runs ok. Any clues on how to approach this? M...

UIScrollView crashes app when touched

Hi, I am running into a very annoying problem: I am creating an UIScrollView that containes an UIView that contains some buttons. The UIView with buttons work fine. But the UIScrollView, no matter what I do with it, when touched, crashes. It doesn't make any difference it's empty or not. It keeps crashing. I am very lost and don't know...

License of accidentally generated pictures/sounds

Imagine you see some picture that should not appear in normal circumstances, e.g. seemingly when graphics card or some program malfunctioned and display nonsense. For example, overheated graphics card crashed and the system frozen, displaying severely corrupted image (it may look unrelated to what it should display, but also may be rela...

StoreKit SKProductsRequest Crash

I use the following code to request a list of products as per the In-App Purchase Programming Guide. It used to work fine in my iPhone application, however now it crashes every time the product list is requested. The delegate method (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response is ne...

Detect FLASH plugin crashes

Is there any way to detect flash-plugin crashes in major browsers (firefox, ie, chrome, safari and opera) via javascript? ...

presentModalViewController crashes simulator

Hi everyone I have a very weird situation, check out the snippet below which launches a ModelViewController for an iPad application: // Load GuestDetailController GuestDetailController *detaileController = [[GuestDetailController alloc] init]; if (searching) { // some code, but nothing relevant to the issue (checked that already) } ...

Debugging on iOS 4.0.1 Device crashing

Hi Trying to fix a bug on iOS 4 but when I debug it crashes with these errors: SDK is installed in seperate directory as I need to deug 3.1.3 as well Developer_Xcode3_2_3_iOS_SDK_4_0_1 Device is running 4.0.1 Any ideas? Cheers [Session started at 2010-07-27 14:26:45 +0100.] Undefined command: "Developer". Try "help". Undefined com...

Why is raising an NSException not bringing down my application?

The Problem I'm writing a Cocoa application and I want to raise exceptions that will crash the application noisily. I have the following lines in my application delegate: [NSException raise:NSInternalInconsistencyException format:@"This should crash the application."]; abort(); The problem is, they don't bring down the application -...

Crash on Windows 7 but running on XP

Hi, i've written a small application using c++, Qt and Visual Studio 2010. It's working on Windows XP (32bit) but it crashes on Windows 7 (64 bit) right after start-up. I see a "The program has stopped working..." error. Do I have to recompile the application for Windows 7? And is it possible to get more information why it crashes? Tha...

Crash Analysis on Linux

What is the best way to analyze crashes on Linux? We expect to build the software and deliver a release version to testers. The testers may not be able remember how to reproduce the crash or the crash may be totally intermittent. They also will not have a development environment on their machines. The software is written in C/C++ and c...

Third-party dll crashes program with no exception thrown

I am using Visual Studio 2010, and coding in C#. I have a third-party dll that I am using in my project. When I attempt to use a specific method, at seemingly random occasions, the program simply crashes, with no exception thrown. The session simply ends. Is there any way I can trace what is going on? ...

NSApplication Exception crash

Hi , my xcode iphone / ipad app crashes when it hits main() upon calling NSApplicationMain() only in ipad build not iphone build any help any one!!! ...

Why I initialise a struct in this way make my phone crashed?

I defined a struct: typedef struct myStruct{ int32 iMem1; int16 sMem2; int32 iMem3; }myStruct; And initialise it: void main(){ myStruct s1 = {0, 1, 0}; return 0; } When I run it in my phone, it crashed my phone. If I initialise it another way: void main(){ myStruct s1 = {0}; return 0; } Everything is ok! ...

Crash when calling virtual function

Ok this is a really weird problem. I wanna start off by saying that I'm not a beginner in c++ and I'm certainly not advanced. I'm somewhere in the middle. What I'm trying to do is make a C++ OOP wrapper library (dll) of the Win32 API. Here are the classes of my library. I compiled it with Mingw using the command: g++ -shared -o bin\win3...