Windows error 0x00000095, 149

Detailed Error Information

IS_SUBST_TARGET[1]

MessageAn attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
Declared inwinerror.h

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

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 Code149 (0x0095)

Questions

2votes
1answer

lldb does not allow to set breakpoint nor list the source file

Having the following assembly source: # hello_asm.s # as hello_asm.s -o hello_asm.o # ld hello_asm.o -e _main -o hello_asm .section __DATA,__data str: .asciz "Hello world!\n" .section __TEXT,__text .globl _main _main: movl $0x2000004, %eax # preparing system call 4 movl $1, %edi # STDOUT file descriptor is 1 movq str@GOTPCREL(%rip), %rsi [...] read more
macos
assembly
lldb
macos-big-sur
0votes
1answer

Windows Phone App crashes after Launcher.LaunchFileAsync when downloaded from store

I have a strange problem, if I deploy my app through visual studio as debug or release version all is working well. But if I publish it to the store and download it from there the app crashes after Launcher.LaunchFileAsync or FileOpenPicker. When my app launches for example the default [...] read more
windows-phone
windows-phone-8.1
windows-phone-store

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