- Timestamp:
- Sep 12, 2016 1:40:53 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VMDK.cpp
r63798 r63799 1850 1850 if (cLine >= VMDK_DESCRIPTOR_LINES_MAX) 1851 1851 { 1852 rc = vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename); 1852 vdIfError(pImage->pIfError, VERR_VD_VMDK_INVALID_HEADER, RT_SRC_POS, N_("VMDK: descriptor too big in '%s'"), pImage->pszFilename); 1853 rc = VERR_VD_VMDK_INVALID_HEADER; 1853 1854 break; 1854 1855 } … … 1871 1872 pszTmp++; 1872 1873 } 1874 1875 if (RT_FAILURE(rc)) 1876 break; 1877 1873 1878 /* Get rid of LF character. */ 1874 1879 if (*pszTmp == '\n')
Note:
See TracChangeset
for help on using the changeset viewer.