Windows error 0x000003E7, 999

Detailed Error Information

SWAPERROR[1]

MessageError performing inpage operation.
Declared inwinerror.h

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

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 Code999 (0x03e7)

Questions

0votes
1answer

Using GDB to tell if variables are signed or unsigned

So I am new to using GDB and I am using the following program as an excercise #include <stdio.h> #include <stdlib.h> int main() { unsigned int value1, abs_value1, abs_value2, abs_value3; int value2, value3; char myarray[10]; printf("Enter 10 characters:"); fgets(myarray, 11, stdin); printf("Enter an integer between 0 and 10,000:"); scanf("%d", &value1); [...] read more
gdb
unsigned
signed
0votes
1answer

Custom number sequence formatting

The system I am working with has a numbering system where the numbers 0-999 are represented by the usual 0-999, but 1000 is represented by A00, followed by A01, A02, A03, etc, 1100 being B00 etc. I can't think of a way to handle this in T-SQL without resorting to [...] read more
sql-server-2008
tsql
sequence
number-formatting
0votes
0answers

i used new operator but it occurs error

Unhandled exception at 0x5F0C08AB (msvcr120d.dll) in ConsoleApplication10.exe: 0xC0000005: Access violation reading location 0x000003E7. It's weird. I just made new memory. code is too long to show you guys. I debug it and it breaks where the line i used new operator. read more
debugging
new-operator

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