Windows error 0x0000008A, 138

Detailed Error Information

JOIN_TO_JOIN[1]

MessageThe system tried to join a drive to a directory on a joined drive.
Declared inwinerror.h

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

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 Code138 (0x008a)

Questions

5votes
0answers

How to diagnose a crash that appears to be internal to WebCore (Thread 2, SIGSEGV)

Hello esteemed SO'ers, A crash recently popped up that's perplexing me. It occurs on Thread 2, appears to be internal to WebCore, is Exception Type SIGSEGV and Exception Code SEGV_ACCERR. Full crash log below. The App uses UIWebViews throughout. The main WebView displays roughly 30 images that reside on disk, [...] read more
ios
uiwebview
crash
webkit
segmentation-fault
3votes
3answers

iOS App crash with exception related to _NSFastEnumerationMutationHandler

I am currently working on an iOS app which crashes and generates the crash report provided below.We think that the app is crashing due to mutation while Fast Enumeration but the error is occurring in NSISEngine. We also think that the issue is related to constraints of a Table View. [...] read more
iphone
ios
objective-c
ios7
crash-reports
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
0answers

getting A/libc(15282): Fatal signal 11 (SIGSEGV) error when running robotium

I am testing my android project using robotium. Project is built on 4.3 version. When I test it manually there is no issues. But when I run the robotium testcases it is throwing below mentioned error and crashed. 10-25 12:40:28.807: A/libc(15282): Fatal signal 11 (SIGSEGV) at 0x0000008a (code=1), thread 15282 [...] read more
android
fatal-error
robotium
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
0answers

How to correct stack location arm-none-eabi-gcc?

I try to create a bare metal code using the standard lib C. I started with an assembly code .section .isr_vector .global _Reset _Reset: B Reset_Handler /* Reset */ B . /* Undefined */ B . /* SWI */ B . /* Prefetch Abort */ B . /* Data Abort [...] read more
gcc
arm
bare-metal
linker-scripts
cortex-a
-2votes
1answer

Bomb Lab Phase 6 :Stuck on the last step

This is asm code for phase_6 08048de3 <phase_6>: 8048de3: 56 push %esi 8048de4: 53 push %ebx 8048de5: 83 ec 4c sub $0x4c,%esp 8048de8: 65 a1 14 00 00 00 mov %gs:0x14,%eax 8048dee: 89 44 24 44 mov %eax,0x44(%esp) 8048df2: 31 c0 xor %eax,%eax 8048df4: 8d 44 24 14 lea 0x14(%esp),%eax [...] read more
linux
assembly
x86
reverse-engineering

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