Changeset 33757 in vbox
- Timestamp:
- Nov 4, 2010 10:25:18 AM (14 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MediumImpl.cpp
r33708 r33757 3693 3693 } 3694 3694 } 3695 else if (m->devType != convertToDeviceType(enmType)) 3695 else if ( enmType == VDTYPE_INVALID 3696 || m->devType != convertToDeviceType(enmType)) 3696 3697 { 3697 3698 /* -
trunk/src/VBox/Storage/RAW.cpp
r33567 r33757 548 548 && pszExtension) 549 549 { 550 if (! strcmp(pszExtension, ".iso")) /* DVD images. */550 if (!RTStrICmp(pszExtension, ".iso")) /* DVD images. */ 551 551 { 552 552 if (cbFile >= (32768 + sizeof(ISOVOLDESC))) … … 578 578 } 579 579 } 580 else if (! strcmp(pszExtension, ".img") || !strcmp(pszExtension, ".ima")) /* Floppy images */580 else if (!RTStrICmp(pszExtension, ".img") || !RTStrICmp(pszExtension, ".ima")) /* Floppy images */ 581 581 { 582 582 if (!(cbFile % 512))
Note:
See TracChangeset
for help on using the changeset viewer.