Changeset 43259 in vbox
- Timestamp:
- Sep 9, 2012 4:02:15 PM (12 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
-
Additions/common/VBoxService/VBoxServiceControl.cpp (modified) (1 diff)
-
Devices/VMMDev/VMMDevTesting.cpp (modified) (1 diff)
-
Frontends/VBoxManage/VBoxManageGuestCtrl.cpp (modified) (1 diff)
-
Main/src-client/GuestProcessImpl.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r42927 r43259 1084 1084 bool fLast = RTListNodeIsLast(&g_lstControlFiles, &pFile->Node); 1085 1085 1086 intrc2 = RTFileClose(pFile->hFile);1086 rc2 = RTFileClose(pFile->hFile); 1087 1087 if (RT_FAILURE(rc2)) 1088 1088 { -
trunk/src/VBox/Devices/VMMDev/VMMDevTesting.cpp
r42589 r43259 144 144 char szFormat[128], szValue[128]; 145 145 RTStrPrintf(szFormat, sizeof(szFormat), "%%VR{%s}", pszRegNm); 146 intrc2 = DBGFR3RegPrintf(pVM, idCpu, szValue, sizeof(szValue), szFormat);146 rc2 = DBGFR3RegPrintf(pVM, idCpu, szValue, sizeof(szValue), szFormat); 147 147 if (RT_SUCCESS(rc2)) 148 148 VMMDEV_TESTING_OUTPUT(("testing: VALUE '%s'%*s: %16s {reg=%s}%s\n", -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r43058 r43259 1930 1930 /* Create the copy context -- it contains all information 1931 1931 * the routines need to know when handling the actual copying. */ 1932 PCOPYCONTEXT pContext ;1932 PCOPYCONTEXT pContext = NULL; 1933 1933 vrc = ctrlCopyContextCreate(guest, fVerbose, fDryRun, fHostToGuest, 1934 1934 strUsername, strPassword, strDomain, -
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r43201 r43259 936 936 int vrc = VINF_SUCCESS; 937 937 938 GuestCtrlCallback *pCallbackRead ;938 GuestCtrlCallback *pCallbackRead = NULL; 939 939 try 940 940 { … … 1513 1513 int vrc = VINF_SUCCESS; 1514 1514 1515 GuestCtrlCallback *pCallbackWrite ;1515 GuestCtrlCallback *pCallbackWrite = NULL; 1516 1516 try 1517 1517 {
Note:
See TracChangeset
for help on using the changeset viewer.

