FolderInfo: Fixed an issue that InfoType=FolderSize doesn't return a value larger than 4GB.

This commit is contained in:
spx
2011-07-11 05:35:15 +00:00
parent a74ee23da3
commit c776cff348
2 changed files with 6 additions and 6 deletions

View File

@ -81,8 +81,8 @@ void FolderInfo::CalculateSize()
do {
// special case for "." and ".."
if (_wcsicmp(findData.cFileName, L".") == 0 ||
_wcsicmp(findData.cFileName, L"..") == 0) {
if (wcscmp(findData.cFileName, L".") == 0 ||
wcscmp(findData.cFileName, L"..") == 0) {
continue;
}