Windows error 0x0000003A, 58

Detailed Error Information

BAD_NET_RESP[1]

MessageThe specified server cannot perform the requested operation.
Declared inwinerror.h

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

SYSTEM_UNWIND_PREVIOUS_USER[2]

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

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 Code58 (0x003a)

Questions

9votes
3answers

Check if VT-D / IOMMU has been enabled in the BIOS/UEFI

To check if Intel's VT-X or AMD's AMD-V is enabled in the BIOS/UEFI, I use: if systool -m kvm_amd -v &> /dev/null || systool -m kvm_intel -v &> /dev/null ; then echo "AMD-V / VT-X is enabled in the BIOS/UEFI." else echo "AMD-V / VT-X is not enabled in the [...] read more
linux
bash
virtual-machine
kvm
iommu
5votes
3answers

InvalidOperationException with MediaLibrary pictures

I have a windows phone app and get sometimes InvalidOperationExceptions but not sure why and how to avoid them. The problem function from the error report is Microsoft.Xna.Framework.Media.MediaLibraryEnumerator_1[[System.__Canon,_mscorlib]].get_Item and i get this stacktrace "Frame Image Function Offset 0 Microsoft.Xna.Framework.ni.dll Microsoft.Xna.Framework.Media.MediaLibraryEnumerator_1[[System.__Canon,_mscorlib]].get_Item 0x0003e4d8 1 Microsoft.Xna.Framework.ni.dll Microsoft.Xna.Framework.Media.MediaLibraryEnumerator_1[[System.__Canon,_mscorlib]].System.Collections.IEnumerator.get_Current 0x00000006 2 Microsoft.Xna.Framework.ni.dll Microsoft.Xna.Framework.Media.MediaLibraryEnumerator_1[[System.__Canon,_mscorlib]].System.Collections.Generic.IEnumerator_T_.get_Current 0x0000001c 3 [...] read more
c#
asynchronous
windows-phone-8
invalidoperationexception
3votes
0answers

How to mount a fuse-sshfs file system inside a FreeBSD-12.0p10 jail

I wish to mount a remote data source locally as a fuse file system. This is listed as supported by lsvfs: lsvfs Filesystem Num Refs Flags -------------------------------- ---------- ----- --------------- devfs 0x00000071 4 synthetic, jail cd9660 0x000000bd 0 read-only procfs 0x00000002 4 synthetic, jail nfs 0x0000003a 0 network zfs 0x000000de [...] read more
freebsd
jail
fuse
3votes
3answers

when trying to write file fprintf does not work

I am just trying to open and write something in file but when visual studio tries to execute fprintf program crashes here is my code #include<stdlib.h> int main() { FILE* fPointer; fPointer = fopen_s(&fPointer,"‪C:\\asd.txt","w"); fprintf(fPointer, "If ı can read this then ı can create for loop"); fclose(fPointer); return 0; } [...] read more
c
io
2votes
1answer

Linux syscall in vmlinux and virtual memory

I have find the sys_open code from vmlinux binary: c1143c20: 55 push ebp c1143c21: 89 e5 mov ebp,esp c1143c23: 83 ec 10 sub esp,0x10 c1143c26: 89 5d f4 mov DWORD PTR [ebp-0xc],ebx c1143c29: 89 75 f8 mov DWORD PTR [ebp-0x8],esi c1143c2c: 89 7d fc mov DWORD PTR [ebp-0x4],edi **c1143c2f: e8 [...] read more
linux
memory
linux-kernel
reverse-engineering
system-calls
1vote
3answers

Disassemble instruction set for 8051 microcontroller

I have the following hex opcode sequence for a 8051 microcontroller 785679107A247BFD7C347D407E51745568F869F96AFA6BFB6CFC6DFD6EFE I found this repo that converts hex to instruction sequences https://github.com/anarcheuz/8051-disassembler. Using that I was able to get the following assembly instructions x00000000: 37 38 MOV 38 (R0,#immed) 0x00000002: 35 ANL A,@R0 0x00000004: 37 39 MOV 39 (R1,#immed) [...] read more
assembly
reverse-engineering
microcontroller
disassembly
8051
1vote
0answers

Assembly Code mapping with source code

I am trying to map source code to object code. I am creating new constructs, building these constructs in Code Composer for Different code Optimization levels and comparing them with the source code. The issue I am facing is, when the DSP generated the assembly code, it has inserted a [...] read more
assembly
disassembly
object-code
0votes
1answer

TrueType Font cmap table Format 0 not serializing

Here is the data I am using to construct the table: { version: { type: 'USHORT', value: 0 }, numTables: { type: 'USHORT', value: 1 }, platformID: { type: 'USHORT', value: 0 }, encodingID: { type: 'USHORT', value: 0 }, offset: { type: 'ULONG', value: 12 }, format: { type: [...] read more
fonts
truetype
0votes
0answers

Windows Phone C# - system.unauthorizedaccessexception

Hellllooooo guys! I have an app for Windows Phone 8. The crash report of my app lists one really big bug that often occurs (crash count is high). The funny (let's say sad) thing is that I can't reproduce this error on my phone or emulator. Can you help me, [...] read more
c#
windows-phone-8
unauthorizedaccessexcepti

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