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:
Andrea Marchesini 2018-05-09 11:02:12 +02:00
Родитель 9b2ede9a8e
Коммит 418c707d0e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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 =