Bug 1198594 The copy constructor of IMENotification should initialize mMessage before calling Assign() r=smaug

This commit is contained in:
Masayuki Nakano 2015-08-26 20:01:05 +09:00
parent 1416e566de
commit 733d9feaed

View File

@ -396,6 +396,7 @@ struct IMENotification final
}
IMENotification(const IMENotification& aOther)
: mMessage(NOTIFY_IME_OF_NOTHING)
{
Assign(aOther);
}