summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/fs/isovfs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Runtime/common/fs/isovfs.cpp')
-rw-r--r--src/VBox/Runtime/common/fs/isovfs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/Runtime/common/fs/isovfs.cpp b/src/VBox/Runtime/common/fs/isovfs.cpp
index d48edcfb86b..594f1ea9b23 100644
--- a/src/VBox/Runtime/common/fs/isovfs.cpp
+++ b/src/VBox/Runtime/common/fs/isovfs.cpp
@@ -5617,7 +5617,7 @@ static int rtFsIsoVolTryInit(PRTFSISOVOL pThis, RTVFS hVfsSelf, RTVFSFILE hVfsBa
/*
* Get stuff that may fail.
*/
- int rc = RTVfsFileGetSize(hVfsBacking, &pThis->cbBacking);
+ int rc = RTVfsFileQuerySize(hVfsBacking, &pThis->cbBacking);
if (RT_SUCCESS(rc))
pThis->cBackingSectors = pThis->cbBacking / pThis->cbSector;
else