Changeset 308
- Timestamp:
- 05/10/07 00:29:53 (1 year ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r306 r308 2 2 3 3 * Use php_strtok_r instead of strtok_r (Thanks to Daan <daan at parse.nl>) 4 * Add fnmatch.c and fnmatch.h and use it on win32 (Thanks to Daan <daan at parse.nl>) 5 * Casting of var 'len' to (int) in decode_version() to get rid of an VC++ 6 warning (Thanks to Daan <daan at parse.nl>) 4 6 5 7 2007-04-21 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> eaccelerator/trunk/eaccelerator.c
r307 r308 392 392 break; 393 393 case 15: 394 if ( len >= number + 5) {394 if ((int)len >= number + 5) { 395 395 str[number] = '-'; 396 396 str[number + 1] = (extra >> 21) & 0x7f; … … 1474 1474 list_head = NULL; 1475 1475 p = NULL; 1476 while ((token = php strtok_r(filter, " ", &saveptr)) != NULL) {1476 while ((token = php_strtok_r(filter, " ", &saveptr)) != NULL) { 1477 1477 filter = NULL; 1478 1478 list_head = malloc(sizeof(struct ea_pattern_t));