From cea2379e641d4f7ced1530ee14f3e0bf5cd35599 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 20 Apr 2015 10:02:27 +0200 Subject: [PATCH] Bug 1153173 - Uninitialised value use in AutoJSExceptionReporter::~AutoJSExceptionReporter. r=aklotz. --- dom/plugins/base/nsJSNPRuntime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/plugins/base/nsJSNPRuntime.cpp b/dom/plugins/base/nsJSNPRuntime.cpp index a0d66358eead..e796f24cce80 100644 --- a/dom/plugins/base/nsJSNPRuntime.cpp +++ b/dom/plugins/base/nsJSNPRuntime.cpp @@ -664,7 +664,7 @@ ReportExceptionIfPending(JSContext *cx) } nsJSObjWrapper::nsJSObjWrapper(NPP npp) - : mJSObj(nullptr), mNpp(npp) + : mJSObj(nullptr), mNpp(npp), mDestroyPending(false) { MOZ_COUNT_CTOR(nsJSObjWrapper); OnWrapperCreated();