From 0fb2b482418bedd475a2088aff6a304e28e29840 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Tue, 31 Jan 2006 20:03:42 +0000 Subject: [PATCH] Bug-fix in sent_email() method, wasn't initializing the "feedback" value. --- src/sbbs3/js_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/js_user.c b/src/sbbs3/js_user.c index f87fe193d2..a2558b9b07 100644 --- a/src/sbbs3/js_user.c +++ b/src/sbbs3/js_user.c @@ -855,7 +855,7 @@ js_sent_email(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval { private_t* p; int32 count=1; - BOOL feedback; + BOOL feedback=FALSE; if((p=(private_t*)JS_GetPrivate(cx,obj))==NULL) return JS_FALSE; -- GitLab