Changeset 69760 in vbox
- Timestamp:
- Nov 19, 2017 3:35:22 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/RTProcIsRunningByName-linux.cpp
r69754 r69760 65 65 * Filter numeric directory entries only. 66 66 */ 67 if ( DirEntry.enmType == RTDIRENTRYTYPE_DIRECTORY 68 && RTStrToUInt32(DirEntry.szName) > 0) 67 if ( ( DirEntry.enmType == RTDIRENTRYTYPE_DIRECTORY 68 || DirEntry.enmType == RTDIRENTRYTYPE_UNKNOWN) 69 && RTStrToUInt32(DirEntry.szName) > 0) 69 70 { 70 71 /*
Note:
See TracChangeset
for help on using the changeset viewer.