Browse Source

Fixed win32 related realpath cache bug

PHP-5.2.1RC1
Dmitry Stogov 18 years ago
parent
commit
a806380376
  1. 2
      TSRM/tsrm_virtual_cwd.c

2
TSRM/tsrm_virtual_cwd.c

@ -742,7 +742,7 @@ no_realpath:
/* Store existent file in realpath cache. */
#ifdef TSRM_WIN32
if (use_cache && !is_unc) {
if (use_cache && !is_unc && (use_realpath == CWD_REALPATH)) {
#else
if (use_cache && (use_realpath == CWD_REALPATH)) {
#endif

Loading…
Cancel
Save