Revert "[SHELL32] SHChangeNotify: Use tree for CDirectoryList (#6784)" (#6800)

Reverts #6784 that was a guilty commit of CORE-19531 that causing performance regression.

JIRA issue: CORE-19531
This commit is contained in:
Katayama Hirofumi MZ
2024-04-25 09:01:21 +09:00
committed by GitHub
parent 91acf823d8
commit d55f49978d
3 changed files with 163 additions and 280 deletions

View File

@@ -71,7 +71,7 @@ static void NTAPI _RequestAllTerminationAPC(ULONG_PTR Parameter)
CDirectoryWatcher::CDirectoryWatcher(LPCWSTR pszDirectoryPath, BOOL fSubTree)
: m_fDead(FALSE)
, m_fRecursive(fSubTree)
, m_dir_list(NULL, pszDirectoryPath, fSubTree)
, m_dir_list(pszDirectoryPath, fSubTree)
{
TRACE("CDirectoryWatcher::CDirectoryWatcher: %p, '%S'\n", this, pszDirectoryPath);