Changeset 31
- Timestamp:
- 12/23/04 20:54:08 (4 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r30 r31 2 2 3 3 * COPYING license file fixed. 4 * Fixed compilation errors under Win32 and old versions of gcc. 4 5 5 6 2004-12-22 ReinerJ <reinerj at users.sourceforge.net> eaccelerator/trunk/eaccelerator.c
r24 r31 2377 2377 zend_function* function; 2378 2378 2379 #ifdef ZEND_ENGINE_2 2380 int fname_len; 2381 char *fname_lc; 2382 #endif 2383 2379 2384 #ifdef DEBUG 2380 2385 pad(TSRMLS_C); … … 2441 2446 2442 2447 #ifdef ZEND_ENGINE_2 2443 2444 int fname_len;2445 char *fname_lc;2446 2448 2447 2449 if (to->function_name) … … 2716 2718 int fname_len; 2717 2719 char *fname_lc; 2720 #ifdef ZEND_ENGINE_2 2721 int cname_len; 2722 char *cname_lc; 2723 Bucket *p; 2724 #endif 2718 2725 2719 2726 #ifdef DEBUG … … 2874 2881 2875 2882 #ifdef ZEND_ENGINE_2 2876 intcname_len = to->name_length;2877 c har *cname_lc = zend_str_tolower_dup(to->name, cname_len);2878 2879 Bucket *p = to->function_table.pListHead;2883 cname_len = to->name_length; 2884 cname_lc = zend_str_tolower_dup(to->name, cname_len); 2885 2886 p = to->function_table.pListHead; 2880 2887 while (p != NULL) { 2881 2888 f = p->pData;