Changeset 886 in svn
- Timestamp:
- 2012-04-05T13:37:21Z (8 years ago)
- Location:
- branches/1.3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
-
branches/1.3/ChangeLog
r817 r886 1 1.3.3 2012-?-? 2 ======== 3 * fix constant name handling (possible SIGSEGV) 4 1 5 1.3.2 2011-06-04 2 6 ======== -
branches/1.3/NEWS
r814 r886 1 1.3.3 2012-?-? 2 ======== 3 * stability fix for PHP_5_3 and before 4 1 5 1.3.2 2011-06-04 2 6 ======== -
branches/1.3/processor/processor.m4
r739 r886 241 241 DISPATCH(int, flags) 242 242 DISPATCH(uint, name_len) 243 pushdef(`emalloc', `malloc($1)') 244 pushdef(`ecalloc', `calloc($1, $2)') 243 pushdef(`estrndup', `zend_strndup') 245 244 PROC_ZSTRING_N(, name, name_len) 246 popdef(`ecalloc') 247 popdef(`emalloc') 245 popdef(`estrndup') 248 246 DISPATCH(int, module_number) 249 247 ') -
branches/1.3/processor/string.m4
r691 r886 21 21 STRTYPE, `zstr_char', `ZSTR_S($1)', 22 22 `', `', `$1')) 23 pushdef(` U', ifelse(24 PTRTYPE, `char', ` ',25 PTRTYPE, `UChar', ` u'))23 pushdef(`STRDUP', ifelse( 24 PTRTYPE, `char', `estrndup', 25 PTRTYPE, `UChar', `eustrndup')) 26 26 if (SRCPTR == NULL) { 27 27 IFNOTMEMCPY(`IFCOPY(` … … 62 62 IFSTORE(`DSTPTR = ifelse(PTRTYPE,`char',`ZSTR_S',`ZSTR_U')(xc_store_string_n(processor, ISTYPE, ZSTR(SRCSTR), $3 C_RELAYLINE));') 63 63 IFRESTORE(` 64 DSTPTR = e`'U`'strndup(SRCPTR, ($3) - 1);64 DSTPTR = STRDUP() (SRCPTR, ($3) - 1); 65 65 ') 66 66 FIXPOINTER_EX(`PTRTYPE', DSTPTR) … … 77 77 ') 78 78 } 79 popdef(` U')79 popdef(`STRDUP') 80 80 popdef(`DSTPTR') 81 81 popdef(`SRCPTR') -
branches/1.3/xcache-test.ini
r627 r886 1 1 memory_limit = 256M 2 error_reporting = E_ALL|E_STRICT 2 3 3 4 [xcache] -
branches/1.3/xcache.h
r816 r886 4 4 #define XCACHE_VERSION "1.3.3-dev" 5 5 #define XCACHE_AUTHOR "mOo" 6 #define XCACHE_COPYRIGHT "Copyright (c) 2005-201 1"6 #define XCACHE_COPYRIGHT "Copyright (c) 2005-2012" 7 7 #define XCACHE_URL "http://xcache.lighttpd.net" 8 8 #define XCACHE_WIKI_URL XCACHE_URL "/wiki" … … 22 22 23 23 #define HAVE_INODE 24 #if !defined(ZEND_ENGINE_2_4) && (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION == 3 && PHP_RELEASE_VERSION >= 99|| PHP_MAJOR_VERSION > 5)24 #if !defined(ZEND_ENGINE_2_4) && (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4 || PHP_MAJOR_VERSION > 5) 25 25 # define ZEND_ENGINE_2_4 26 26 #endif
Note: See TracChangeset
for help on using the changeset viewer.