Changeset 572 for trunk/dll/filldir.c
- Timestamp:
- Mar 21, 2007, 3:52:36 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/dll/filldir.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/filldir.c
r557 r572 29 29 17 Feb 07 GKY Add more drive types 30 30 09 Mar 07 GKY Use SelectDriveIcon 31 20 Mar 07 GKY Increase extention check to 4 letters for icon selections 31 32 32 33 ***********************************************************************/ … … 56 57 HPOINTER hptr; 57 58 ULONG cmp; 58 CHAR cmps[ 4];59 CHAR cmps[5]; 59 60 60 61 p = strrchr(p, '.'); 61 if (p && !p[ 4]) {62 if (p && !p[5]) { 62 63 cmps[0] = '.'; 63 64 cmps[1] = toupper(p[1]); 64 65 cmps[2] = toupper(p[2]); 65 66 cmps[3] = toupper(p[3]); 67 cmps[4] = toupper(p[4]); 66 68 67 69 cmp = *(ULONG *) cmps;
Note:
See TracChangeset
for help on using the changeset viewer.
