Search
j0ke.net Open Build Service
>
Projects
>
OSSP
>
js
> js-1.6.20070208_uninitialized-variable.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File js-1.6.20070208_uninitialized-variable.patch of Package js (Revision 3)
Currently displaying revision
3
,
show latest
Index: src/jsdso.c =================================================================== --- src/jsdso.c.orig 2006-08-03 15:19:21.000000000 +0200 +++ src/jsdso.c 2007-04-18 20:39:09.548757861 +0200 @@ -132,7 +132,7 @@ JS_DSOUnload(JSContext *cx, int id) if ((func.vp = dlsym(handle, "js_DSO_unload")) != NULL) { rc = func.fp(cx); if (!rc) { - JS_ReportError(cx, "function \"js_DSO_unload\" in DSO with id #%d returned error", idx); + JS_ReportError(cx, "function \"js_DSO_unload\" in DSO with id #%d returned error", id); return JS_FALSE; } }