Changeset 69753 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 19, 2017 2:27:58 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119153
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFR3PlugIn.cpp
r69674 r69753 471 471 strcat(szPath, pszSuff); 472 472 473 PRTDIR pDir;474 rc = RTDirOpenFiltered(& pDir, szPath, RTDIRFILTER_WINNT, 0 /*fFlags*/);473 RTDIR hDir; 474 rc = RTDirOpenFiltered(&hDir, szPath, RTDIRFILTER_WINNT, 0 /*fFlags*/); 475 475 if (RT_SUCCESS(rc)) 476 476 { … … 479 479 */ 480 480 RTDIRENTRY DirEntry; 481 while (RT_SUCCESS(RTDirRead( pDir, &DirEntry, NULL)))481 while (RT_SUCCESS(RTDirRead(hDir, &DirEntry, NULL))) 482 482 { 483 483 szPath[offDir] = '\0'; … … 496 496 } 497 497 498 RTDirClose( pDir);498 RTDirClose(hDir); 499 499 } 500 500 }
Note:
See TracChangeset
for help on using the changeset viewer.