Windows error 0x0000028C, 652

Detailed Error Information

DRIVER_DATABASE_ERROR[1]

MessageThere was error [%2] processing the driver database.
Declared inwinerror.h

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

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 Code652 (0x028c)

Questions

3votes
2answers

Exception thrown by unexpected assembler code after a call to new (heap)

I am chasing an exception which is thrown from a part of code which is added by the compiler after each call to new. It's the standard C++ new, which should get some memory from the heap and call the constructor of the class. We are running VxWorks 5.5.1 with [...] read more
c++
exception
gcc
assembly
vxworks
1vote
0answers

Android Linker Script - Missing PT_DYNAMIC

I am attempting to run the following sample Android program that prints out the size of a function. #include <stdio.h> extern unsigned char func_start; extern unsigned char func_end; int func(void) __attribute__((section(".func"))); int func(void) { return 0; } int main(int argc, char **argv) { size_t func_size = &func_end - &func_start; printf("%zu\n", [...] read more
android
c
android-ndk
linker
linker-errors

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