mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
Bug 1415494 - Uninitialised value use in mozilla::layers::CompositorManagerChild::IsInitialized. r=aosmond.
--HG-- extra : rebase_source : 5879cf17e81c25a5fe343c834e5c1eeb6693a0cf
This commit is contained in:
parent
853c90510c
commit
5c81253f01
@ -91,6 +91,7 @@ GPUProcessManager::GPUProcessManager()
|
||||
mNumProcessAttempts(0),
|
||||
mDeviceResetCount(0),
|
||||
mProcess(nullptr),
|
||||
mProcessToken(0),
|
||||
mGPUChild(nullptr)
|
||||
{
|
||||
MOZ_COUNT_CTOR(GPUProcessManager);
|
||||
|
@ -281,7 +281,7 @@ private:
|
||||
|
||||
// Fields that are associated with the current GPU process.
|
||||
GPUProcessHost* mProcess;
|
||||
MOZ_INIT_OUTSIDE_CTOR uint64_t mProcessToken;
|
||||
uint64_t mProcessToken;
|
||||
GPUChild* mGPUChild;
|
||||
RefPtr<VsyncBridgeChild> mVsyncBridge;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user