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 cd0fd3466a
commit a856ea3154

View File

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