- Timestamp:
- 2006-07-16T06:30:58Z (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/processor.m4
r89 r91 465 465 #ifdef ZEND_ENGINE_2 466 466 if (dst->scope) { 467 dst->scope = xc_get_class(processor, ( int) dst->scope);467 dst->scope = xc_get_class(processor, (zend_ulong) dst->scope); 468 468 xc_fix_method(processor, dst); 469 469 } … … 485 485 IFRESTORE(` 486 486 if (dst->scope) { 487 dst->scope = xc_get_class(processor, ( int) dst->scope);487 dst->scope = xc_get_class(processor, (zend_ulong) dst->scope); 488 488 xc_fix_method(processor, dst); 489 489 } -
trunk/xcache.c
r90 r91 1142 1142 1143 1143 PHP_MD5Init(&context); 1144 PHP_MD5Update(&context, Z_STRVAL_PP(pass), Z_STRLEN_PP(pass));1144 PHP_MD5Update(&context, (unsigned char *) Z_STRVAL_PP(pass), Z_STRLEN_PP(pass)); 1145 1145 PHP_MD5Final(digest, &context); 1146 1146
Note: See TracChangeset
for help on using the changeset viewer.