Changeset 1916 for trunk/dll/makelist.c
- Timestamp:
 - Nov 1, 2025, 7:30:47 PM (3 days ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/dll/makelist.c (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/dll/makelist.c
r1673 r1916 39 39 #include "fortify.h" // 06 May 08 SHL 40 40 #include "tmrsvcs.h" // ITIMER_DESC 41 #include "eas.h" // GetLargeEASize 41 42 42 43 static PSZ pszSrcFile = __FILE__; … … 150 151 pfl->crtime = ffb4->ftimeCreation; 151 152 pfl->cbFile = ffb4->cbFile; 152 pfl->easize = CBLIST_TO_EASIZE(ffb4->cbList); 153 //Need to account for snapshot file but since cbList is a ulong and will always be even the fact they can exceed 154 //65535 doesn't matter. 31 Oct 25 GKY 155 pfl->easize = ffb4->cbList == 65535 ? GetLargeEASize(ffb4->achName) : CBLIST_TO_EASIZE(ffb4->cbList); 153 156 strcpy(pfl->fname, string); 154 157 (*list)[*pnumfiles] = pfl;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  