Changeset 19199 in vbox
- Timestamp:
- Apr 27, 2009 9:39:51 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/VBoxHDD.cpp
r19176 r19199 385 385 if (cbPreRead) 386 386 { 387 rc = vdReadHelper(pDisk, pImage ->pPrev, uOffset - cbPreRead, pvTmp,387 rc = vdReadHelper(pDisk, pImage, uOffset - cbPreRead, pvTmp, 388 388 cbPreRead); 389 389 if (RT_FAILURE(rc)) … … 420 420 (char *)pvBuf + cbThisWrite, cbWriteCopy); 421 421 if (cbReadImage) 422 rc = vdReadHelper(pDisk, pImage ->pPrev,422 rc = vdReadHelper(pDisk, pImage, 423 423 uOffset + cbThisWrite + cbWriteCopy, 424 424 (char *)pvTmp + cbPreRead + cbThisWrite + cbWriteCopy, … … 481 481 /* Read the entire data of the block so that we can compare whether it will 482 482 * be modified by the write or not. */ 483 rc = vdReadHelper(pDisk, pImage ->pPrev, uOffset - cbPreRead, pvTmp,483 rc = vdReadHelper(pDisk, pImage, uOffset - cbPreRead, pvTmp, 484 484 cbPreRead + cbThisWrite + cbPostRead - cbFill); 485 485 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.