Changeset 69754 in vbox
- Timestamp:
- Nov 19, 2017 2:32:51 PM (7 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/RTProcIsRunningByName-linux.cpp
r69753 r69754 110 110 } 111 111 } 112 RTDirClose( pDir);112 RTDirClose(hDir); 113 113 } 114 114 -
trunk/src/VBox/Runtime/r3/linux/krnlmod-linux.cpp
r69753 r69754 180 180 while (RT_SUCCESS(rc)) 181 181 { 182 if (!RTDirEntryIsStdDotLink(&DirEnt ry))182 if (!RTDirEntryIsStdDotLink(&DirEnt)) 183 183 cKmodsLoaded++; 184 184 rc = RTDirRead(hDir, &DirEnt, NULL); … … 207 207 208 208 RTDIR hDir = NULL; 209 int rc = RTDirOpen(& pDir, "/sys/module");209 int rc = RTDirOpen(&hDir, "/sys/module"); 210 210 if (RT_SUCCESS(rc)) 211 211 {
Note:
See TracChangeset
for help on using the changeset viewer.