From ca6e22e92b1fb1c454c9fa14dda3e191b0749c0f Mon Sep 17 00:00:00 2001 From: Michael Busby Date: Tue, 7 Feb 2012 03:11:03 -0600 Subject: [PATCH] DepotDownloader: Forgot to close file handle in checksum validation. --- DepotDownloader/Util.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DepotDownloader/Util.cs b/DepotDownloader/Util.cs index 40d104c6..8fe1877b 100644 --- a/DepotDownloader/Util.cs +++ b/DepotDownloader/Util.cs @@ -106,6 +106,7 @@ namespace DepotDownloader } ++cnt; } + fs.Close(); return (cnt == checksums.Length); }