Windows error 0x0000219D, 8605

Detailed Error Information

DS_DUPLICATE_ID_FOUND[1]

MessageThe requested object has a non-unique identifier and cannot be retrieved.
Declared inwinerror.h

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

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 Code8605 (0x219d)

Questions

0votes
2answers

IOS Simulator keeps crashing?

Whenever I try to Run the IOS Simulator, it keeps crashing. I work on Xcode 5.0.2. On the main.m file it says Thread 1:SIGABRT. Heres is the line where the SIGABRT appeared. return UIApplicationMain(argc, argv, nil, NSStringFromClass([xyzAppDelegate class])); heres what was going on in the main.m #import <UIKit/UIKit.h> #import "xyzAppDelegate.h" [...] read more
xcode
0votes
1answer

Thread 1: signal SIGABRT error in main

Got this error message in the main function. Am new to debugging this kind of error in Xcode 5, so would appreciate your suggestions about how to approach this kind of error. Thanks in advance. Here is the code: Main: #import <UIKit/UIKit.h> #import "BullsEyeAppDelegate.h" int main(int argc, char * argv[]) [...] read more
ios
xcode
debugging

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