Windows error 0x000000BC, 188

Detailed Error Information

INVALID_STARTING_CODESEG[1]

MessageThe operating system cannot run %1.
Declared inwinerror.h

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

NETWORK_BOOT_DUPLICATE_ADDRESS[2]

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

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 Code188 (0x00bc)

Questions

12votes
5answers

How can I cast a char to an unsigned int?

I have a char array that is really used as a byte array and not for storing text. In the array, there are two specific bytes that represent a numeric value that I need to store into an unsigned int value. The code below explains the setup. char* bytes = [...] read more
c
pointers
casting
2votes
1answer

Testing multicast - not getting proper results

This question was asked before here: https://networkengineering.stackexchange.com/questions/71813/testing-multicast-problem But I was pointed here. I use this tool: https://www.winsocketdotnetworkprogramming.com/winsock2programming/winsock2advancedmulticast9a.html With turned off Windows Firewall and with turned off ESET Security Firewall. Using: C:\2>ipconfig Windows IP Configuration Ethernet adapter Połączenie lokalne: Connection-specific DNS Suffix . : IPv4 Address. . . . . . [...] read more
multicast
2votes
1answer

Exif TIFF field offset doesn't point to correct value

I'm trying to extract the DateTime from a JPEG file's Exif header. I did a quick hex dump to try and locate the Tiff entry. Here's a snippet of the hex dump: 00000000 ff d8 ff e1 27 19 45 78 69 66 00 00 4d 4d 00 2a |....'.Exif..MM.*| [...] read more
jpeg
tiff
exif
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
1answer

cv::split in OpenCV 2.4.1 and Visual Studio

I had a problem while splitting rgb image into single channels. My simple code is as following **cv::Mat src = cv::imread("D:/Test/a.jpg", 1); std::vector<cv::Mat> img_rgb; cv::split(src, img_rgb); cv::imshow("a", src);** My debug shows that this probem come from the split function and the following errors was throwed. *Unhandled exception at 0x10005768 in [...] read more
c++
image
opencv
1vote
1answer

iPhone App Crashing when Coming From Background After Expiration Handler Ran

I'm having some issues with an iPhone app crashing when it comes from background, it is crashing in two ways. Here is one stack trace: Hardware Model: iPhone4,1 Process: MyApp [11247] Identifier: MyApp Code Type: ARM (Native) Parent Process: launchd [1] OS Version: iPhone OS 5.0.1 (9A406) Report Version: 104 [...] read more
iphone
objective-c
ios
background
crash

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