Windows error 0x00003C28, 15400

Detailed Error Information

CANNOT_SWITCH_RUNLEVEL[1]

MessageThe requested run level switch cannot be completed successfully.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80073C28.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code15400 (0x3c28)

Questions

4votes
3answers

Popping UIView crashes app

I'm basically pushing a UIView from a UITableViewController and all it contains is a UIWebView. However when I remove the UIView to return back to the UITableView the app crashes. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // Navigation logic may go here. Create and push another view controller. if (indexPath.row [...] read more
iphone
iphone-sdk-3.0
uiviewcontroller
2votes
2answers

iPhone Crash Report

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. [...] read more
iphone
crash
2votes
2answers

Core Data crashed - a rarely happened error on the device

I got this crash log while querying an array of managed object, however, while running in the simulator it does not happen. Even in the device, sometimes it happens, sometimes not. Someone can explain to me why and what is the error? Incident Identifier: 0ED2BB7C-5E8F-483B-AE08-8DE2C14D0C23 CrashReporter Key: e24b9614a897f92ee13ce00b76c71db307c61dcb Process: FooApp [...] read more
iphone
objective-c
core-data
crash
three20
1vote
1answer

How to avoid MKMapKit Related Crashes on the iPhone

So, for the past few days I have been struggling to understand how to implement a simple MKMapView with some custom annotations without crashing my application in the process. Unfortunately I have been unable to determine what I'm doing wrong and am becoming increasingly frustrated in the process. What I'm [...] read more
iphone
annotations
mkmapview
0votes
2answers

allocating and dismissing UIAlert w/spinner animation: crashes sometimes, doing it wrong?

I'm creating an alert dialog with a spinner graphic. UIAlertView *alert; //(at top of controller) alert = [[[UIAlertView alloc] initWithTitle:@"Looking for someone to connnect to via WiFi" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles: nil] autorelease]; [alert show]; UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; indicator.center = CGPointMake(alert.bounds.size.width / 2, alert.bounds.size.height - 50); [indicator [...] read more
iphone
uialertview
-1votes
1answer

sometime application crash at the launch time in 3.1.2

here is the crash log Date/Time: 2010-08-31 18:16:52.646 +0530 OS Version: iPhone OS 3.1.2 (7D11) Report Version: 104 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000 Crashed Thread: 0 Thread 0 Crashed: 0 libobjc.A.dylib 0x00003ec0 objc_msgSend + 24 1 HybridMobile 0x00006f3a 0x1000 + 24378 2 CoreFoundation 0x0003963a -[NSObject release] [...] read more
iphone

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0