зеркало из https://github.com/mozilla/gecko-dev.git
Bug 632342 - mSensor should be deleted on startup failure. r=blassey
This commit is contained in:
Родитель
6a2d061254
Коммит
fb4cf54bd7
|
@ -147,8 +147,11 @@ void nsDeviceMotionSystem::Startup()
|
|||
if (mSensor)
|
||||
started = mSensor->Startup();
|
||||
|
||||
if (!started)
|
||||
if (!started) {
|
||||
delete mSensor;
|
||||
mSensor = nsnull;
|
||||
return;
|
||||
}
|
||||
|
||||
mUpdateTimer = do_CreateInstance("@mozilla.org/timer;1");
|
||||
if (mUpdateTimer)
|
||||
|
|
Загрузка…
Ссылка в новой задаче