Changeset 17962 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Mar 16, 2009 5:57:54 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44543
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/module/vboxmod.c
r17925 r17962 328 328 LogFunc(("hgcm connection failed. internal ioctl result %Rrc, hgcm result %Rrc\n", 329 329 vrc, info.result)); 330 331 330 if (rc >= 0 && info.result < 0) 331 rc = info.result; 332 332 } 333 333 if (rc >= 0) … … 495 495 rc = vboxadd_hgcm_alloc_buffer(&MemObj, pv, u32Size, 496 496 pParm->type != VMMDevHGCMParmType_LinAddr_Out /* copy */); 497 if (rc >= 0) { 497 if (rc >= 0) 498 { 498 499 ppvCtx[iParm] = MemObj; 499 500 pParm->u.Pointer.u.linearAddr = (uintptr_t)MemObj->pKernel; 500 } else 501 } 502 else 501 503 ppvCtx[iParm] = NULL; 502 504 break; … … 1349 1351 1350 1352 /* Register our user session device */ 1351 if (!rc) { 1353 if (!rc) 1354 { 1352 1355 rc = misc_register(&gMiscVBoxUser); 1353 1356 if (rc)
Note:
See TracChangeset
for help on using the changeset viewer.