From a856ea315468aa59e460178ea32482ded3fb8202 Mon Sep 17 00:00:00 2001 From: Masayuki Nakano Date: Wed, 26 Aug 2015 20:01:05 +0900 Subject: [PATCH] Bug 1198594 The copy constructor of IMENotification should initialize mMessage before calling Assign() r=smaug --- widget/IMEData.h | 1 + 1 file changed, 1 insertion(+) diff --git a/widget/IMEData.h b/widget/IMEData.h index c0b0ba84127..1788ecf87f8 100644 --- a/widget/IMEData.h +++ b/widget/IMEData.h @@ -396,6 +396,7 @@ struct IMENotification final } IMENotification(const IMENotification& aOther) + : mMessage(NOTIFY_IME_OF_NOTHING) { Assign(aOther); }