Windows error 0x00000242, 578

Detailed Error Information

NO_PAGEFILE[1]

MessageNo paging file was specified in the system configuration.
Declared inwinerror.h

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

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 Code578 (0x0242)

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

Same HTTP request passes with CURL_CLI but fails with LIBCURL

Am using libcurl to communicate with Amazon S3. GET calls are success whereas PUT (for uploading files) calls are failing with 403. PUT call with same headers when ran through CURL-CLI are success. I have disabled certificate checking. [[ curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0) ]] Using CURLOPT_DEBUGFUNCTION option as specified in https://curl.haxx.se/libcurl/c/CURLOPT_DEBUGFUNCTION.html, [...] read more
c
curl
libcurl
0votes
2answers

Why is the string specified in `LD_PRELOAD` loaded on the memory of setuid executables in RedHat 6.2?

First of all, let me tell you the context. I'm solving problems of the wargame called The lord of the BoF, which is based on RedHat Linux 6.2, which has no address space layout randomization(ASLR), NX bit, ASCII armor, etc.. And the gcc there does not make any dummy when [...] read more
linux
security
memory
ld-preload

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