зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1452784 - Use malloc() instead of new[] in IDBObjectStorage to match the use of free() in memory BlobImpl, r=decoder
This commit is contained in:
Родитель
9b2ede9a8e
Коммит
418c707d0e
|
@ -639,7 +639,7 @@ StructuredCloneWriteCallback(JSContext* aCx,
|
|||
MOZ_ASSERT(module);
|
||||
|
||||
size_t bytecodeSize = module->bytecodeSerializedSize();
|
||||
UniquePtr<uint8_t[]> bytecode(new uint8_t[bytecodeSize]);
|
||||
UniquePtr<uint8_t[], JS::FreePolicy> bytecode(js_pod_malloc<uint8_t>(bytecodeSize));
|
||||
module->bytecodeSerialize(bytecode.get(), bytecodeSize);
|
||||
|
||||
RefPtr<BlobImpl> blobImpl =
|
||||
|
|
Загрузка…
Ссылка в новой задаче