mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-09 13:25:00 +00:00
Fix build bustage for bug 868405, CLOSED TREE
This commit is contained in:
parent
136de42d58
commit
9beba3b9fc
@ -807,7 +807,8 @@ void MediaPipelineTransmit::PipelineListener::ProcessVideoChunk(
|
||||
|
||||
// Send a black image.
|
||||
nsAutoArrayPtr<uint8_t> pixelData;
|
||||
pixelData = new (fallible_t()) uint8_t[length];
|
||||
static const fallible_t fallible = fallible_t();
|
||||
pixelData = new (fallible) uint8_t[length];
|
||||
if (pixelData) {
|
||||
memset(pixelData, 0x10, yPlaneLen);
|
||||
// Fill Cb/Cr planes
|
||||
|
Loading…
Reference in New Issue
Block a user