Windows error 0x000002D8, 728

Detailed Error Information

FIRMWARE_UPDATED[1]

MessageWindows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].
Declared inwinerror.h

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

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 Code728 (0x02d8)

Questions

1vote
0answers

Compiling OpenSSL engine (.so) fails to load undefined symbol

I am compiling the following OpenSSL engine, from Atmel https://github.com/AtmelCSO/cryptoauth-openssl-engine/ for an ARM platform. The code, uses 'eckey_asn1_meth' from the OpenSSL codebase: git grep "eckey_asn1_meth" engine_meth/eccx08_ameth.c: extern const EVP_PKEY_ASN1_METHOD eckey_asn1_meth; engine_meth/eccx08_ameth.c: eccx08_pkey_asn1_meth.pub_encode = eckey_asn1_meth.pub_encode; engine_meth/eccx08_ameth.c: eccx08_pkey_asn1_meth.pub_decode = eckey_asn1_meth.pub_decode; engine_meth/eccx08_ameth.c: eccx08_pkey_asn1_meth.pub_cmp = eckey_asn1_meth.pub_cmp; engine_meth/eccx08_ameth.c: eccx08_pkey_asn1_meth.pub_print = eckey_asn1_meth.pub_print; engine_meth/eccx08_ameth.c: eccx08_pkey_asn1_meth.priv_decode = eckey_asn1_meth.priv_decode; [...] read more
c
linker
openssl
shared-libraries
1vote
0answers

Setting iframe window.location causing crash on Android 4.3 native browser (Chromium/WebKit)

I have some javascript which sets the window.location of an iframe to load another html page. For some reason this causes both the WebView and the native Android browser (Chromium) to crash in Android 4.3 and earlier. On Android 4.4 there are no issues. It is my understanding that on [...] read more
javascript
android
iframe
webkit
android-webview
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

PEVerify Defect: It reports "Type load failed" on valid class compiled with csc.exe for compact framework

A trivial class: public class TestClass : System.ServiceModel.Security.SecurityCredentialsManager { } When compiled using csc against the MS CompactFramework v3.5 will result in a dll that fails to pass peverify, resulting in a "Type load failure". It appears to be an issue with inheriting from the SecurityCredentialsManager class which is part [...] read more
c#
compact-framework
cil
csc
peverify

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