зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1026998. Initialize size CanvasRenderingContext2D. r=bas
This fixes an unitiailized read found by valgrind.
This commit is contained in:
Родитель
5169f5253e
Коммит
b8114d206e
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче