Windows error 0x00002154, 8532

Detailed Error Information

DS_INIT_FAILURE[1]

MessageDirectory Services could not start.
Declared inwinerror.h

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

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 Code8532 (0x2154)

Questions

31votes
16answers

iPhone crashing when presenting modal view controller

I'm trying to display a modal view straight after another view has been presented modally (the second is a loading view that appears). - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; // Show load LoadViewController *loader = [[LoadViewController alloc] init]; [self presentModalViewController: loader animated:NO]; [loader release]; } But when I do this I [...] read more
iphone
memory-management
uiviewcontroller
crash
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
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

iPad app crash on launch : Help me analyze this crash log

Some user's of our iPad application are reporting a crash on launch of the application. Though I have the same device (and the same OS version 4.2.1) I am unable to replicate the crash on my device. I managed to get this crash log from ITC but unsure if this [...] read more
ipad
ios
crash
0votes
1answer

What does thread ID 0 mean? Especially as the OwningThread of a locked CritSec in a deadlock?

0 is not a valid thread ID, according to MSDN and Raymond Chen. But, when I analyzed a dump, one of the two dead-locked critical sections, is locked, but with OwningThread as 0. Can somebody help to explain? > !locks CritSec ModuleA!lockerA+4 at 58cf4b24 WaiterWoken No LockCount 230 RecursionCount 0 [...] read more
multithreading
deadlock
dump
critical-section
0votes
1answer

Mixed Video Type Content queued in an AVQueuePlayer on iPhone

I'd like to start of by apologizing for this ridiculously long post, but I tried to provide as much code and data as possible for you to refer to. I am working on a video project where I will need the flexibility of the AVQueuePlayer (foremost the ability to scale [...] read more
iphone
queue
video-streaming
avplayer
http-streaming
-1votes
1answer

What is error in this code so that it is crashing?

I am using table view in which I am showing 10 row of table by custom cell and one is by normal cell. I have use this code... - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier=@"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (indexPath.row == [listofBusiness count]) { if [...] read more
iphone
uitableview
custom-cell

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