@@ -0,0 +1,13 @@
+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;
+ }
+ }
|