Windows error 0x00002128, 8488

Detailed Error Information

DS_SRC_GUID_MISMATCH[1]

MessageSource and destination of a cross-domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object.
Declared inwinerror.h

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

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 Code8488 (0x2128)

Questions

4votes
4answers

iPhone Crash stack trace VS Crash report

Just spent some time... on a crash, without understanding it. That's a classic: Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x00000010 Which leads me to a memory issue, addressing the invalid adress 0x10 What bothers me is that I have crash report and stack trace, which differ: -------------------------------------------------------------------------------- The [...] read more
iphone
crash
stack-trace
report
3votes
2answers

Why did this app crash while in the background?

My app uses background location for GPS updates. I've registered it for background location updates, and while it's running in background, it always crashes like this. Since I haven't written most of this code, I really have no idea what happened. I have checked the memory allocations and there doesn't [...] read more
iphone
objective-c
gps
core-location
background-process
3votes
2answers

App Crashing in NSURLConnection

I am trying to figure out what is causing this crash. I have built and given the app to our testers but we cannot seem to reproduce this reliably. It just happens sometimes... Thread 0 Crashed: 0 libobjc.A.dylib 0x000027da objc_msgSend + 18 1 Foundation 0x00032896 -[NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading] + 62 2 [...] read more
iphone
objective-c
ios
2votes
1answer

Help to Interpret Apple crash report

I can't reproduce the error I'm getting in the Apple crash reports. I have 4 apps using the same codebase already approved and now I have had 2 rejected with the same errors that I have never come across. Below is the crash report that I got back from my [...] read more
iphone
ios4
crash
crash-reports
2votes
2answers

What other info can I get from this crash report?

This is a crash report - its from an ad-hoc tester and I cannot find the error. As far as I can see there is an array which is outstepping its bounds (I'm looking for an objectAtIndex:x when the array only has y objects - where y<x). However this only [...] read more
iphone
crash
crash-reports
1vote
2answers

how to resolve "failed to resume in time" on iOS

Incident Identifier: A664D7F0-B508-4D77-8052-3D15B7612921 CrashReporter Key: cc6fa311f4d178cd2a1c946ced641fab87e0181d Hardware Model: iPhone2,1 Process: iPORTALs [4155] Path: /var/mobile/Applications/EFCD0F88-675F-47E2-AFA9-9EC4D918881F/iPORTALs.app/iPORTALs Identifier: iPORTALs Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2011-01-24 18:58:22.908 +0700 OS Version: iPhone OS 4.1 (8B117) Report Version: 104 Exception Type: 00000020 Exception Codes: 0x8badf00d Highlighted Thread: 0 Application [...] read more
iphone
objective-c
ios4
crash-dumps
1vote
1answer

My Application Crashes While Running In Background

Exception Type: 00000020 Exception Codes: 0x8badf00d Highlighted Thread: 0 Application Specific Information: GpsDemo[162] has active assertions beyond permitted time: {( <SBProcessAssertion: 0x8f585c0> identifier: CoreLocationBackgroundClient process: GpsDemo[162] permittedBackgroundDuration: 600.000000 reason: finishTask owner pid:162 preventSuspend preventIdleSleep )} Elapsed total CPU time (seconds): 6.670 (user 2.850, system 3.820), 1% CPU Elapsed application CPU [...] read more
iphone
1vote
2answers

iPhone App crashing on launch on iOS 4.1

iPhone application is crashing on launch in the iOS 4.1 but working in later versions and iOS 4.0. This is the crash log got from the device, I am not able to point out the issue Incident Identifier: F3B50401-19DE-4E41-BFB4-C0D904D73C06 CrashReporter Key: 7df1d68c8b14e4afa43c08cf96c7221621953e69 Hardware Model: iPhone3,1 Process: POCNew [1592] Path: /var/mobile/Applications/2E4FF8FF-2AB1-4F1F-86B8-231029FB4E1D/POCNew.app/POCNew [...] read more
iphone
objective-c
1vote
2answers

How can I understand this crash log?

Looks like its related to NSURLConnection, but not sure how I can diagnose? Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x1ab98c00 Crashed Thread: 0 Thread 0 Crashed: 0 libobjc.A.dylib 0x000027da objc_msgSend + 18 1 CFNetwork 0x00010fcc ClientContextHolder<CFURLConnectionClient_V4>::forget() + 60 2 CFNetwork 0x00010f86 URLConnectionClient::releaseClientLocked() + 34 3 CFNetwork 0x00004a2e URLConnectionClient::processEvents() [...] read more
iphone
objective-c
cocoa-touch
debugging
nsurlconnection
1vote
2answers

EXC_BAD_ACCESS Crash when displaying AdWhirl ad on iPhone

I am using AdWhirl in my app and got a suspicious crash mid-game. It appears to crash in the animationDidStop:finished: function which I didn't create. Could this be a bug in AdWhirl? I can't find this file referenced in the log: (MMHTMLAdView.m:123) This is the log: Date/Time: 2010-10-21 09:54:14.861 +0200 [...] read more
iphone
exc-bad-access
adwhirl
1vote
1answer

App Crashes because iAd Fails to Resume in Time

My app runs fine when I don't have iAds. As soon as I display an iAd the system shuts down my app because the iAd can't resume in time. How do I resolve this? Elapsed total CPU time (seconds): 1.380 (user 0.880, system 0.500), 14% CPU Elapsed application CPU time [...] read more
iphone
objective-c
cocoa-touch
xcode
iad
0votes
1answer

CCSpriteSheet random crash on draw

I am facing an issue in myApp that i am developing. I am using CCSpriteSheet for objects that move around the screen, the objects move randomly and after some time get removed from the screen. The crash usually occurs when the state is heavy when lots of objects are coming [...] read more
iphone
objective-c
0votes
2answers

How should this seemingly mysterious crash report from 4.1 be interpreted?

I'm getting a lot of complaints from people using 4.1 about my app crashing. I was finally able to track down a device with 4.1 and get the crash logs from it (by the way, is there a way that I can use the simulator with 4.1?) and I'm not [...] read more
ios
ios4
ios-simulator
0votes
1answer

Enumeration Mutation During UIView transitionWithView

I'm experience an occasional crash of my iPhone application where I'm getting the following exception NSGenericException', reason: '*** Collection <CALayerArray: 0x26f6b0> was mutated while being enumerated. With the stack trace on the crashing thread of Thread 0 Crashed: 0 libSystem.B.dylib 0x00078ac8 __kill + 8 1 libSystem.B.dylib 0x00078ab8 kill + 4 [...] read more
iphone
objective-c
cocoa-touch
ios
uikit
0votes
1answer

Crash on creating new persistence store (jailbroken iPhone device 4.1)

Whenever I deploy "CoreDataBooks" Apple iOS sample application to my jailbroken device with self signed certificate and run it - it crashes at line where core-data persistent store is added to persistent store coordinator: line 178: if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:options error:&error]) { // Update to handle the error [...] read more
iphone
xcode
core-data
jailbreak
self-signed
-2votes
4answers

solve Crash Log in ios

I have an app of sending free text MSG .. While i select a contact i got my application crash and from crash log i didn't get solution of it .. Can any one tell me how to solve crash log with proper stapes .. Here is my Crash Log [...] read more
ios
iphone
crash-reports

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