瀏覽代碼

Revert "UI/updater: Fix files with similar hashes clashing"

This reverts commit 7396c211be75da3bce74cf8d2661a481a5c10fff.
derrod 2 年之前
父節點
當前提交
cbe3ef7e57
共有 1 個文件被更改,包括 0 次插入4 次删除
  1. 0 4
      UI/win-update/updater/updater.cpp

+ 0 - 4
UI/win-update/updater/updater.cpp

@@ -952,16 +952,12 @@ static void UpdateWithPatchIfAvailable(const char *name, const char *hash,
 		update.fileSize = size;
 		update.patchable = true;
 
-		/* ensure the filename is unique */
-		static long increment = 0;
-
 		/* Since the patch depends on the previous version, we can
 		 * no longer rely on the temp name being unique to the
 		 * new file's hash */
 		update.tempPath = tempPath;
 		update.tempPath += L"\\";
 		update.tempPath += patchHashStr;
-		update.tempPath += std::to_wstring(increment++);
 		break;
 	}
 }