diff --git a/src/libcdio/cdio/bytesex.h b/src/libcdio/cdio/bytesex.h index c124d0f0..2292ded1 100644 --- a/src/libcdio/cdio/bytesex.h +++ b/src/libcdio/cdio/bytesex.h @@ -211,7 +211,8 @@ static CDIO_INLINE uint32_t from_733_with_err (uint64_t p, bool *err) { if (uint64_swap_le_be (p) != p) { - cdio_warn ("from_733: broken byte order"); +// Commented out for Rufus +// cdio_warn ("from_733: broken byte order"); *err = true; } else { *err = false; diff --git a/src/libcdio/cdio/version.h b/src/libcdio/cdio/version.h index b0e5d4fe..c87df4a9 100644 --- a/src/libcdio/cdio/version.h +++ b/src/libcdio/cdio/version.h @@ -7,7 +7,7 @@ /*! CDIO_VERSION is a C-Preprocessor macro of a string that shows what version is used. cdio_version_string has the same value, but it is a constant variable that can be accessed at run time. */ -#define CDIO_VERSION "0.94 i686-w64-mingw32" +#define CDIO_VERSION "0.94 (Rufus)" extern const char *cdio_version_string; /**< = CDIO_VERSION */ /*! LIBCDIO_VERSION_NUM is a C-Preprocessor macro that can be used for diff --git a/src/libcdio/iso9660/iso9660_fs.c b/src/libcdio/iso9660/iso9660_fs.c index c0bd2249..b9c23e78 100644 --- a/src/libcdio/iso9660/iso9660_fs.c +++ b/src/libcdio/iso9660/iso9660_fs.c @@ -1123,8 +1123,8 @@ _fs_iso_stat_traverse (iso9660_t *p_iso, const iso9660_stat_t *_root, if (!p_stat) { cdio_warn("Bad directory information for %s", splitpath[0]); - free(_dirbuf); - return NULL; + // Patched for Rufus - Don't bail out on this + continue; } /* If we have multiextent file parts, loop until the last one */ diff --git a/src/rufus.rc b/src/rufus.rc index a548fff2..ba2b3757 100644 --- a/src/rufus.rc +++ b/src/rufus.rc @@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL IDD_DIALOG DIALOGEX 12, 12, 232, 326 STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_ACCEPTFILES -CAPTION "Rufus 3.0.1297" +CAPTION "Rufus 3.0.1298" FONT 9, "Segoe UI Symbol", 400, 0, 0x0 BEGIN LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP @@ -389,8 +389,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,0,1297,0 - PRODUCTVERSION 3,0,1297,0 + FILEVERSION 3,0,1298,0 + PRODUCTVERSION 3,0,1298,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -407,13 +407,13 @@ BEGIN BEGIN VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" VALUE "FileDescription", "Rufus" - VALUE "FileVersion", "3.0.1297" + VALUE "FileVersion", "3.0.1298" VALUE "InternalName", "Rufus" VALUE "LegalCopyright", "© 2011-2018 Pete Batard (GPL v3)" VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" VALUE "OriginalFilename", "rufus.exe" VALUE "ProductName", "Rufus" - VALUE "ProductVersion", "3.0.1297" + VALUE "ProductVersion", "3.0.1298" END END BLOCK "VarFileInfo"