Windows error 0x0000213D, 8509

Detailed Error Information

DS_SCHEMA_UPDATE_DISALLOWED[1]

MessageSchema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.
Declared inwinerror.h

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

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 Code8509 (0x213d)

Questions

1vote
2answers

iOS7 - UITabBarController seletedIndex crash

I am working on a TabBar based application. At some point I am doing: if([[[appDelegate.tabBarController viewControllers] objectAtIndex:1] isKindOfClass:[UINavigationController class]]) { UINavigationController *navController = [[appDelegate.tabBarController viewControllers] objectAtIndex:1]; [navController popToRootViewControllerAnimated:NO]; } appDelegate.tabBarController.selectedIndex = 1; // CRASH HERE On iOS6 it is working fine but when I build the application with XCode5 / [...] read more
crash
uitabbarcontroller
ios7
xcode5
-7votes
2answers

UIApplicationMain crashing in xcode

My application is crashing as #import <UIKit/UIKit.h> int main(int argc, char *argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; int retVal = UIApplicationMain(argc, argv, nil, nil); //Thread 1:signal SIGABRT [pool release]; return retVal; /* int retVal = 0; @autoreleasepool { NSString *classString = NSStringFromClass([gTalkAppDelegate class]); @try { retVal = UIApplicationMain(argc, [...] read more
ios
iphone
objective-c
xcode

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