Windows error 0x00000134, 308

Detailed Error Information

IMAGE_SUBSYSTEM_NOT_PRESENT[1]

MessageThe subsystem needed to support the image type is not present.
Declared inwinerror.h

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

DRIVE_EXTENDER[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x134: DRIVE_EXTENDER.

HRESULT analysis[3]

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[3][1]
DescriptionThe default facility code.[3][1]
Error Code308 (0x0134)

Questions

16votes
1answer

Why do I get in gdb "Cannot access memory at address 0x..." while inspecting a core dump?

I get this message when I try to print the following line while analysing a core dump. (gdb) p/x *($esi) Cannot access memory at address 0xe6d3a030 I mention that the address pointed by %esi (0xe6d3a030) should point to some valid allocated data. ( when I run this program myself and [...] read more
c++
memory-management
assembly
gdb
coredump
5votes
2answers

MP4 / MOV H.264 - determine bytestream standard (Annex B or AVC)

how can I figure out if the video bytestream of a MP4 or MOV H.264 videofile is decoded using the AVC standard or the Annex B standard? Both standards can start their NALUs with 0x000001. In the Annex B Standard every NALU starts with a start code 0x000001 or 0x00000001. [...] read more
video
format
h.264
3votes
0answers

GDB show R/W Permissions in specific memory address

I have a simulation in Matlab Simulink which uses an SO library file with my algo code. I want to know the read/write permissions of a specific memory address using GDB. For example I care about knowing the permissions on the memory of this variable: (gdb) p &CalValid $3 = [...] read more
c
linux
memory-management
permissions
gdb
1vote
0answers

C - Get File Bytes as Unsigned Int

I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
c
1vote
0answers

Google breakpad give invalid dump info on some devices/cpus/os?

I've compiled and ran google-breakpad on android app successfully, and solved some crashes with the sufficient information collected through it. But among the dumps there're some insufficient ones that give no stack trace or issued models. I spent some time trying to figure out the relationship between dump info and [...] read more
android
android-ndk
google-breakpad
1vote
2answers

Seg Fault in ARM Assembly

So, I am trying to learn ARM assembly and basically what I want to do is turn on the LEDs of my BeagleBone Black using pure assembly. I know how to program in C very well, but I am new to ARM assembly if that makes any difference. Basically I [...] read more
c
assembly
beagleboneblack
0votes
1answer

Watchguard Firewall SSLVPN

After running into some initial connection errors (which were resolved via Watchguard Firewall - Issues with SSLVPN), I'm able to accept the SSL certificate provided by the firewall and get further into the connection process / attempt. However, I'm still unable to complete the connection, and I'm currently seeing the [...] read more
vpn
watchguard
0votes
1answer

Memory mapped through gpio in beaglebone black

We are using beaglebone black through which data is taken. Temprature sensor dht11 is taken from the GPIO of beagle bone black. Normal on and off (one way transmission) is done easily but when it comes to continuous data transmission we are getting memory mapped issue in android. Below is [...] read more
android
c
android-ndk
beagleboneblack
beagleboard
0votes
1answer

Avoid having $ match end of buffer with boost regex partial_match

I am regex searching a file with cregex_iterator. I have boost::regex_constants::match_partial and boost::regex_constants::match_not_eob set in my match flags and I have $ at the end of my regular expression. The problem is that $ appears to be matching against the end of the buffer. since I am looking for partial [...] read more
c++
regex
boost

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0