Bug 1224233 - fix crashy usage of IMENotificationSender::Run using on-screen keyboard on Windows, r=smaug

This commit is contained in:
Gijs Kruitbosch 2015-11-12 15:56:01 +00:00
parent 70f90ad4d9
commit f72f67ba6f

View File

@ -1405,7 +1405,8 @@ IMEContentObserver::TryToFlushPendingNotifications()
MOZ_LOG(sIMECOLog, LogLevel::Debug,
("IMECO: 0x%p IMEContentObserver::TryToFlushPendingNotifications(), "
"performing queued IMENotificationSender forcibly", this));
mQueuedSender->Run();
RefPtr<IMENotificationSender> queuedSender = mQueuedSender;
queuedSender->Run();
}
/******************************************************************************