summaryrefslogtreecommitdiff
path: root/www/mozilla-devel/files/patch-jsfun.c
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-07-23 05:40:42 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-07-23 05:40:42 +0000
commitc755aa5f08ade861b7347b18753795dd9386c14a (patch)
tree7c4fcc49a0bb8a146db07fd38415b4b3d73f6b52 /www/mozilla-devel/files/patch-jsfun.c
parentfix net/tcpview: Chase AF_{NS/NETBIOS} (bento) (diff)
Update to 1.5a.
Diffstat (limited to 'www/mozilla-devel/files/patch-jsfun.c')
-rw-r--r--www/mozilla-devel/files/patch-jsfun.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/www/mozilla-devel/files/patch-jsfun.c b/www/mozilla-devel/files/patch-jsfun.c
deleted file mode 100644
index 69aacb9b54cd..000000000000
--- a/www/mozilla-devel/files/patch-jsfun.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- js/src/jsfun.c.orig Fri May 30 20:55:38 2003
-+++ js/src/jsfun.c Fri May 30 20:54:24 2003
-@@ -1081,7 +1081,7 @@
- JSString *atomstr;
- char *propname;
- JSScopeProperty *sprop;
-- jsid userid;
-+ uint32 userid;
- JSAtom *atom;
- uintN i, n, dupflag;
- uint32 type;
-@@ -1157,7 +1157,7 @@
- userid = INT_TO_JSVAL(sprop->shortid);
- propname = ATOM_BYTES((JSAtom *)sprop->id);
- if (!JS_XDRUint32(xdr, &type) ||
-- !JS_XDRUint32(xdr, (uint32 *)&userid) ||
-+ !JS_XDRUint32(xdr, &userid) ||
- !JS_XDRCString(xdr, &propname)) {
- if (mark)
- JS_ARENA_RELEASE(&cx->tempPool, mark);
-@@ -1173,7 +1173,7 @@
- uintN attrs = JSPROP_ENUMERATE | JSPROP_PERMANENT;
-
- if (!JS_XDRUint32(xdr, &type) ||
-- !JS_XDRUint32(xdr, (uint32 *)&userid) ||
-+ !JS_XDRUint32(xdr, &userid) ||
- !JS_XDRCString(xdr, &propname)) {
- return JS_FALSE;
- }