Date: 12/15/00
- Next message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #8265 Updated: Compile fails for oci8 with Oracle 8.0.4 - missing libs"
- Previous message: Derick Rethans: "Re: [PHP-DEV] libmcrypt patch"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] [PATCH] More AIX xlc trips"
- Reply: Andi Gutmans: "Re: [PHP-DEV] [PATCH] More AIX xlc trips"
- Maybe reply: Sam Ruby: "Re: [PHP-DEV] [PATCH] More AIX xlc trips"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
xlc complains that the code is attempting to assign to an lvalue. I don't
understand
the reason for the funky casting in the original (force alignment?), so the
'fix' may not be valid.
Bill
Index: servlet.c
===================================================================
RCS file: /repository/php4/sapi/servlet/servlet.c,v
retrieving revision 1.40
diff -u -r1.40 servlet.c
--- servlet.c 2000/11/18 02:44:04 1.40
+++ servlet.c 2000/12/15 15:33:53
@@ -304,7 +304,7 @@
ELS_FETCH();
MAKE_STD_ZVAL(pzval);
- (pval*)(long)addr = pzval;
+ addr = (jlong) pzval;
zend_hash_add(&EG(symbol_table), (char*)nameAsUTF,
strlen(nameAsUTF)+1, &pzval, sizeof(pval *), NULL);
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #8265 Updated: Compile fails for oci8 with Oracle 8.0.4 - missing libs"
- Previous message: Derick Rethans: "Re: [PHP-DEV] libmcrypt patch"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] [PATCH] More AIX xlc trips"
- Reply: Andi Gutmans: "Re: [PHP-DEV] [PATCH] More AIX xlc trips"
- Maybe reply: Sam Ruby: "Re: [PHP-DEV] [PATCH] More AIX xlc trips"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

