Changeset 121
- Timestamp:
- 07/09/05 13:31:10 (3 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r120 r121 6 6 * Code clean up and compile fixes for VC.net + VC.net project files update 7 7 (Based on patch #1234919) 8 * Future check warning was done on uninitialised buf. 8 9 9 10 2005-07-07 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> eaccelerator/trunk/eaccelerator.c
r120 r121 1212 1212 int nreloads; 1213 1213 time_t compile_time; 1214 int stat_result = 0; 1214 1215 1215 1216 #ifdef EACCELERATOR_USE_INODE … … 1226 1227 #endif 1227 1228 compile_time = time(0); 1229 stat_result = eaccelerator_stat(file_handle, realname, &buf TSRMLS_CC); 1228 1230 if (buf.st_mtime >= compile_time && eaccelerator_debug > 0) { 1229 1231 ea_debug_log("[%d] EACCELERATOR: Warning: \"%s\" is cached but it's mtime is in the future.\n", … … 1231 1233 } 1232 1234 1233 if (!MMCG(enabled) || 1234 (eaccelerator_mm_instance == NULL) || 1235 !eaccelerator_mm_instance->enabled || 1236 file_handle == NULL || 1237 file_handle->filename == NULL || 1238 eaccelerator_stat(file_handle, realname, &buf TSRMLS_CC) != 0 || 1235 if (!MMCG(enabled) || (eaccelerator_mm_instance == NULL) || 1236 !eaccelerator_mm_instance->enabled || file_handle == NULL || 1237 file_handle->filename == NULL || stat_result != 0 || 1239 1238 #ifdef EACCELERATOR_USE_INODE 1240 1239 0) {