From 045999da8584b0f07825653b34508d3e8c231033 Mon Sep 17 00:00:00 2001 From: "rginda%netscape.com" Date: Wed, 22 Jan 2003 05:42:35 +0000 Subject: [PATCH] - venkman only - bug 189563, initialize hookresult to prevent warnings --- js/jsd/jsd_step.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jsd/jsd_step.c b/js/jsd/jsd_step.c index 3e4a1735e75b..dd9061de1dbb 100644 --- a/js/jsd/jsd_step.c +++ b/js/jsd/jsd_step.c @@ -114,7 +114,7 @@ _callHook(JSDContext *jsdc, JSContext *cx, JSStackFrame *fp, JSBool before, { JSDScript* jsdscript; JSScript* jsscript; - JSBool hookresult; + JSBool hookresult = JS_TRUE; if (!jsdc || !jsdc->inited) return JS_FALSE;