Windows error 0x80660005, -2140798971

Detailed Error Information

E_HDAUDIO_NULL_LINKED_LIST_ENTRY[1]

MessageAn unexpected NULL pointer was encountered in a linked list.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode102 (0x066)
NameFACILITY_AUDIO[1]
Error Code5 (0x0005)

Questions

1vote
1answer

Error "The object store currently does not support blob values" when trying to store file in indexedDB

I'm trying to make a storage in javascript using IndexedDB to store blobs. Here is my code var Storage = (function () { function Storage(callback) { var indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB || window.OIndexedDB || window.msIndexedDB, IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction || window.OIDBTransaction || window.msIDBTransaction, dbVersion = 1.0; [...] read more
javascript
indexeddb
1vote
1answer

Why IDBKeyRange.only() does not allow boolean?

I have an index in my object store, created like this: objStore.createIndex("pinned", "pinned"); I want to store values of boolean type there. And unfortunately I can't get only records with "pinned" field set to "true". Why does this happen? Is this my database design mistake? IDBKeyRange.only(true) Firefox: [Exception... "Data provided [...] read more
javascript
html
indexeddb

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