Windows error 0x00000089, 137

Detailed Error Information

NOT_SUBSTED[1]

MessageThe system tried to delete the substitution of a drive that is not substituted.
Declared inwinerror.h

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

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 Code137 (0x0089)

Questions

2votes
2answers

DWARF - How to find the prologue end/epilogue start addresses of functions in a given binary?

I have an ARM binary of which I need to find exactly at which addresses its function's prologues end and the epilogues begin. In other words, I need the boundaries of the function bodies. For instance, if I have a function whose assembly is something like: 0x00000320 <+0>: push {r7, [...] read more
c
assembly
objdump
dwarf
readelf
2votes
1answer

stm32l476 ADC not ready

I am trying to bring up one of the ADC's on the STM32L476 Nucleo board. I think i have things configured ok, but i must be missing a step. I know this can be done use the HAL API and CubeMX, but i prefer register level access when bringing up [...] read more
stm32
keil
2votes
1answer

Windbg c++ how to print vector contents

I have the below code snippet Class Filters { vector<int> numbers; } Filters f1; I need to debug the content inside f1.numbers Windbg> ??f1.numbers class std::vector<bool,std::allocator<bool> > +0x000 _Myvec : std::vector<unsigned int,std::allocator<unsigned int> > +0x018 _Mysize : 7 Windbg> ??f1.numbers._Myvec._Mypair._Myval2 class std::_Vector_val<std::_Simple_types<unsigned int> > +0x000 _Myfirst : 0x00000089`006cf220 -> 0x7e [...] read more
c++
debugging
vector
windbg
1vote
0answers

Keep having an error when using static array which is not initialized

I am using 16bit microcontroller which uses gcc4.5 compiler, 32kbyte flash/1kbyte ram. compiling is fine without error, memory is reaching to it's limit but it has some vacancy on both flash/ram and works just fine However, when i define static array without initialization it causes system to die. I cannot [...] read more
c
0votes
1answer

FASM SHR strange behaviour

Using FASM I'm trying to shift dword with a SHR instruction which should shift bits to right appending zeroes. Here is the code: format ELF executable 3 entry start segment readable executable start: cmp byte [counter],0 jz fin mov eax,4 mov ebx,1 mov ecx,some mov edx,4 int 0x80 ; write [...] read more
linux
assembly

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