File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1363,7 +1363,7 @@ zend_persistent_script *zend_file_cache_script_load(zend_file_handle *file_handl
1363
1363
}
1364
1364
1365
1365
if (read (fd , & info , sizeof (info )) != sizeof (info )) {
1366
- zend_accel_error (ACCEL_LOG_WARNING , "opcache cannot read from file '%s'\n" , filename );
1366
+ zend_accel_error (ACCEL_LOG_WARNING , "opcache cannot read from file '%s' (info) \n" , filename );
1367
1367
zend_file_cache_flock (fd , LOCK_UN );
1368
1368
close (fd );
1369
1369
unlink (filename );
@@ -1411,7 +1411,7 @@ zend_persistent_script *zend_file_cache_script_load(zend_file_handle *file_handl
1411
1411
#endif
1412
1412
1413
1413
if (read (fd , mem , info .mem_size + info .str_size ) != (ssize_t )(info .mem_size + info .str_size )) {
1414
- zend_accel_error (ACCEL_LOG_WARNING , "opcache cannot read from file '%s'\n" , filename );
1414
+ zend_accel_error (ACCEL_LOG_WARNING , "opcache cannot read from file '%s' (mem) \n" , filename );
1415
1415
zend_file_cache_flock (fd , LOCK_UN );
1416
1416
close (fd );
1417
1417
unlink (filename );
You can’t perform that action at this time.
0 commit comments