fix ubO pt.3

This commit is contained in:
wuggy 2026-09-14 15:25:18 -07:00
commit 3f10f6cfc5
3 changed files with 53 additions and 1 deletions

View file

@ -68,7 +68,9 @@ struct IDBObjectStore::StructuredCloneWriteInfo
uint64_t mOffsetToKeyProp;
explicit StructuredCloneWriteInfo(IDBDatabase* aDatabase)
: mCloneBuffer(JS::StructuredCloneScope::DifferentProcessForIndexedDB, nullptr,
// DifferentProcessForIndexedDB is a read-only compatibility mode. New
// records must use the durable, cross-process serialization format.
: mCloneBuffer(JS::StructuredCloneScope::DifferentProcess, nullptr,
nullptr)
, mDatabase(aDatabase)
, mOffsetToKeyProp(0)