mirror of
				https://github.com/pbatard/rufus.git
				synced 2024-08-14 23:57:05 +00:00 
			
		
		
		
	[syslinux] remove unwanted 'isolinux.tmp' on error
* Also use a global 'temp_dir' variable and fix a small issue with Swedish translation
This commit is contained in:
		
							parent
							
								
									ae6fa7af39
								
							
						
					
					
						commit
						77e40d1373
					
				
					 5 changed files with 17 additions and 14 deletions
				
			
		|  | @ -82,7 +82,6 @@ static const char* grub_dirname = "/boot/grub/i386-pc"; | |||
| static const char* grub_cfg = "grub.cfg"; | ||||
| static const char* syslinux_cfg[] = { "isolinux.cfg", "syslinux.cfg", "extlinux.conf" }; | ||||
| static const char* arch_cfg[] = { "archiso_sys32.cfg", "archiso_sys64.cfg" }; | ||||
| static const char* isolinux_tmp = ".\\isolinux.tmp"; | ||||
| static const char* isolinux_bin[] = { "isolinux.bin", "boot.bin" }; | ||||
| static const char* pe_dirname[] = { "/i386", "/minint" }; | ||||
| static const char* pe_file[] = { "ntdetect.com", "setupldr.bin", "txtsetup.sif" }; | ||||
|  | @ -789,6 +788,8 @@ out: | |||
| 			uprintf("  Will use '%s' for Syslinux", img_report.cfg_path); | ||||
| 			// Extract all of the isolinux.bin files we found to identify their versions
 | ||||
| 			for (i=0; i<isolinux_path.Index; i++) { | ||||
| 				char isolinux_tmp[MAX_PATH]; | ||||
| 				static_sprintf(isolinux_tmp, "%s\\isolinux.tmp", temp_dir); | ||||
| 				size = (size_t)ExtractISOFile(src_iso, isolinux_path.String[i], isolinux_tmp, FILE_ATTRIBUTE_NORMAL); | ||||
| 				if (size == 0) { | ||||
| 					uprintf("  Could not access %s", isolinux_path.String[i]); | ||||
|  | @ -821,8 +822,8 @@ out: | |||
| 						} | ||||
| 					} | ||||
| 					free(buf); | ||||
| 					_unlink(isolinux_tmp); | ||||
| 				} | ||||
| 				_unlink(isolinux_tmp); | ||||
| 			} | ||||
| 			if (img_report.sl_version != 0) { | ||||
| 				static_sprintf(img_report.sl_version_str, "%d.%02d", | ||||
|  |  | |||
							
								
								
									
										12
									
								
								src/rufus.c
									
										
									
									
									
								
							
							
						
						
									
										12
									
								
								src/rufus.c
									
										
									
									
									
								
							|  | @ -94,7 +94,7 @@ HINSTANCE hMainInstance; | |||
| HWND hMainDialog, hLangToolbar = NULL, hUpdatesDlg = NULL; | ||||
| MY_BUTTON_IMAGELIST bi_iso = { 0 }, bi_up = { 0 }, bi_down = { 0 }; | ||||
| GetTickCount64_t pfGetTickCount64 = NULL; | ||||
| char szFolderPath[MAX_PATH], app_dir[MAX_PATH], system_dir[MAX_PATH], sysnative_dir[MAX_PATH]; | ||||
| char szFolderPath[MAX_PATH], app_dir[MAX_PATH], system_dir[MAX_PATH], temp_dir[MAX_PATH], sysnative_dir[MAX_PATH]; | ||||
| char* image_path = NULL; | ||||
| float fScale = 1.0f; | ||||
| int default_fs; | ||||
|  | @ -3103,7 +3103,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine | |||
| 		uprintf("Could not access UTF-16 args"); | ||||
| 	} | ||||
| 
 | ||||
| 	// Retrieve the current application directory as well as the system & sysnative dirs
 | ||||
| 	// Retrieve various app & system directories
 | ||||
| 	if (GetCurrentDirectoryU(sizeof(app_dir), app_dir) == 0) { | ||||
| 		uprintf("Could not get current directory: %s", WindowsErrorString()); | ||||
| 		app_dir[0] = 0; | ||||
|  | @ -3112,6 +3112,10 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine | |||
| 		uprintf("Could not get system directory: %s", WindowsErrorString()); | ||||
| 		safe_strcpy(system_dir, sizeof(system_dir), "C:\\Windows\\System32"); | ||||
| 	} | ||||
| 	if (GetTempPathU(sizeof(temp_dir), temp_dir) == 0) { | ||||
| 		uprintf("Could not get temp directory: %s", WindowsErrorString()); | ||||
| 		safe_strcpy(temp_dir, sizeof(temp_dir), ".\\"); | ||||
| 	} | ||||
| 	// Construct Sysnative ourselves as there is no GetSysnativeDirectory() call
 | ||||
| 	// By default (64bit app running on 64 bit OS or 32 bit app running on 32 bit OS)
 | ||||
| 	// Sysnative and System32 are the same
 | ||||
|  | @ -3169,9 +3173,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine | |||
| 		uprintf("loc file not found in current directory - embedded one will be used"); | ||||
| 
 | ||||
| 		loc_data = (BYTE*)GetResource(hMainInstance, MAKEINTRESOURCEA(IDR_LC_RUFUS_LOC), _RT_RCDATA, "embedded.loc", &loc_size, FALSE); | ||||
| 		if ( (GetTempPathU(sizeof(tmp_path), tmp_path) == 0) | ||||
| 		  || (GetTempFileNameU(tmp_path, APPLICATION_NAME, 0, loc_file) == 0) | ||||
| 		  || (loc_file[0] == 0) ) { | ||||
| 		if ( (GetTempFileNameU(temp_dir, APPLICATION_NAME, 0, loc_file) == 0) || (loc_file[0] == 0) ) { | ||||
| 			// Last ditch effort to get a loc file - just extract it to the current directory
 | ||||
| 			safe_strcpy(loc_file, sizeof(loc_file), rufus_loc); | ||||
| 		} | ||||
|  |  | |||
|  | @ -382,7 +382,7 @@ extern HWND hMainDialog, hLogDlg, hStatus, hDeviceList, hCapacity; | |||
| extern HWND hPartitionScheme, hFileSystem, hClusterSize, hLabel, hBootType, hNBPasses, hLog; | ||||
| extern HWND hInfo, hProgress, hDiskID, hStatusToolbar; | ||||
| extern float fScale; | ||||
| extern char szFolderPath[MAX_PATH], app_dir[MAX_PATH], system_dir[MAX_PATH], sysnative_dir[MAX_PATH]; | ||||
| extern char szFolderPath[MAX_PATH], app_dir[MAX_PATH], temp_dir[MAX_PATH], system_dir[MAX_PATH], sysnative_dir[MAX_PATH]; | ||||
| extern char* image_path; | ||||
| extern DWORD FormatStatus, DownloadStatus, MainThreadId; | ||||
| extern BOOL PromptOnError; | ||||
|  |  | |||
							
								
								
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							|  | @ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | |||
| IDD_DIALOG DIALOGEX 12, 12, 242, 376 | ||||
| STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||||
| EXSTYLE WS_EX_ACCEPTFILES | ||||
| CAPTION "Rufus 2.16.1138" | ||||
| CAPTION "Rufus 2.16.1139" | ||||
| FONT 8, "Segoe UI Symbol", 400, 0, 0x0 | ||||
| BEGIN | ||||
|     LTEXT           "Device",IDS_DEVICE_TXT,9,6,200,8 | ||||
|  | @ -366,8 +366,8 @@ END | |||
| // | ||||
| 
 | ||||
| VS_VERSION_INFO VERSIONINFO | ||||
|  FILEVERSION 2,16,1138,0 | ||||
|  PRODUCTVERSION 2,16,1138,0 | ||||
|  FILEVERSION 2,16,1139,0 | ||||
|  PRODUCTVERSION 2,16,1139,0 | ||||
|  FILEFLAGSMASK 0x3fL | ||||
| #ifdef _DEBUG | ||||
|  FILEFLAGS 0x1L | ||||
|  | @ -384,13 +384,13 @@ BEGIN | |||
|         BEGIN | ||||
|             VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" | ||||
|             VALUE "FileDescription", "Rufus" | ||||
|             VALUE "FileVersion", "2.16.1138" | ||||
|             VALUE "FileVersion", "2.16.1139" | ||||
|             VALUE "InternalName", "Rufus" | ||||
|             VALUE "LegalCopyright", "© 2011-2017 Pete Batard (GPL v3)" | ||||
|             VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" | ||||
|             VALUE "OriginalFilename", "rufus.exe" | ||||
|             VALUE "ProductName", "Rufus" | ||||
|             VALUE "ProductVersion", "2.16.1138" | ||||
|             VALUE "ProductVersion", "2.16.1139" | ||||
|         END | ||||
|     END | ||||
|     BLOCK "VarFileInfo" | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue