Bug 1026998. Initialize size CanvasRenderingContext2D. r=bas

This fixes an unitiailized read found by valgrind.
This commit is contained in:
Jeff Muizelaar 2014-07-01 17:20:07 +02:00
Родитель 5169f5253e
Коммит b8114d206e
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -559,7 +559,11 @@ DrawTarget* CanvasRenderingContext2D::sErrorTarget = nullptr;
CanvasRenderingContext2D::CanvasRenderingContext2D()
: mForceSoftware(false), mZero(false), mOpaque(false), mResetLayer(true)
: mForceSoftware(false)
// these are the default values from the Canvas spec
, mWidth(300), mHeight(150)
, mZero(false), mOpaque(false)
, mResetLayer(true)
, mIPC(false)
, mStream(nullptr)
, mIsEntireFrameInvalid(false)