Changeset 3024 in kBuild
- Timestamp:
- Jan 7, 2017 5:46:13 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/dir-nt-bird.c
r3017 r3024 251 251 if (pEntry->bObjType != KFSOBJ_TYPE_MISSING) 252 252 { 253 /* Copy the name that fits. If neither fits, skip the name. */ 254 if (pEntry->cchName < sizeof(pDir->DirEnt.d_name)) 253 /* Copy the name that fits, trying to avoid names with spaces. 254 If neither fits, skip the name. */ 255 if ( pEntry->cchName < sizeof(pDir->DirEnt.d_name) 256 && ( pEntry->pszShortName == pEntry->pszName 257 || memchr(pEntry->pszName, ' ', pEntry->cchName) == NULL)) 255 258 { 256 259 pDir->DirEnt.d_namlen = pEntry->cchName;
Note:
See TracChangeset
for help on using the changeset viewer.