Changeset 32616 in vbox
- Timestamp:
- Sep 17, 2010 4:11:57 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r32605 r32616 547 547 if (pThis->fGuestCoreDumpEnabled) 548 548 { 549 PVM pVM = PDMDevHlpGetVM(pDevIns);550 551 549 /* 552 550 * User makes sure the directory exists. 553 551 */ 554 552 if (!RTDirExists(pThis->szGuestCoreDumpDir)) 555 return VERR_FILE_NOT_FOUND; 553 return VERR_NOT_FOUND; 554 556 555 char szCorePath[RTPATH_MAX]; 557 556 RTStrCopy(szCorePath, sizeof(szCorePath), pThis->szGuestCoreDumpDir); … … 580 579 * Write the core file. 581 580 */ 581 PVM pVM = PDMDevHlpGetVM(pDevIns); 582 582 pRequestHeader->rc = DBGFR3CoreWrite(pVM, szCorePath); 583 583 }
Note:
See TracChangeset
for help on using the changeset viewer.