Changeset 1915 for trunk/dll/comp.c
- Timestamp:
- Nov 1, 2025, 7:27:49 PM (44 hours ago)
- File:
-
- 1 edited
-
trunk/dll/comp.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/comp.c
r1900 r1915 153 153 #include "worker.h" // MOVEIT 154 154 #include "rename.h" // RenameProc 155 #include "eas.h" // GetLargeEASize 155 156 156 157 #ifdef PMPRINTF … … 216 217 pffb->ftimeLastWrite.minutes, 217 218 pffb->ftimeLastWrite.twosecs, 218 pffb->attrFile,219 pffb->cbList > 4 ? pffb->cbList / 2 : 0);219 pffb->attrFile, 220 pffb->cbList == 65535 ? GetLargeEASize(pffb->achName) : CBLIST_TO_EASIZE(pffb->cbList)); 220 221 } 221 222 // Skip . and .. … … 1839 1840 p = strchr(p, ','); 1840 1841 if (p) { 1841 p++; 1842 fb4.cbList = atol(p) * 2; 1842 p++; 1843 //Since cbList is a ulong and will always be even the fact they can exceed 1844 //65535 doesn't matter. 31 Oct 25 GKY 1845 fb4.cbList = atol(p) * 2; 1843 1846 if (fForceUpper) 1844 1847 strupr(str + 1); … … 2426 2429 2427 2430 strcpy(fullname, PCSZ_STARDOTPMD); 2428 if (insert_filename(HWND_DESKTOP, fullname, TRUE, FALSE) &&2431 if (insert_filename(HWND_DESKTOP, fullname, 1, FALSE) && 2429 2432 *fullname && !strchr(fullname, '*') && !strchr(fullname, '?')) 2430 2433 strcpy(cmp->rightlist, fullname); … … 3219 3222 3220 3223 strcpy(fullname, PCSZ_STARDOTPMD); 3221 if (insert_filename(HWND_DESKTOP, fullname, TRUE, FALSE) &&3224 if (insert_filename(HWND_DESKTOP, fullname, 1, FALSE) && 3222 3225 *fullname && !strchr(fullname, '*') && !strchr(fullname, '?')) { 3223 3226 strcpy(cmp->rightlist, fullname); … … 3287 3290 3288 3291 strcpy(fullname, PCSZ_STARDOTPMD); 3289 if (insert_filename(HWND_DESKTOP, fullname, TRUE, FALSE) &&3292 if (insert_filename(HWND_DESKTOP, fullname, 1, FALSE) && 3290 3293 *fullname && !strchr(fullname, '*') && !strchr(fullname, '?')) 3291 3294 strcpy(cmp->rightlist, fullname);
Note:
See TracChangeset
for help on using the changeset viewer.
