Remove variable name duplication (dotnet/coreclr#22155)
authoralexk000 <alexkucherenko7@gmail.com>
Wed, 23 Jan 2019 17:36:20 +0000 (12:36 -0500)
committerJan Kotas <jkotas@microsoft.com>
Wed, 23 Jan 2019 17:36:20 +0000 (09:36 -0800)
Commit migrated from https://github.com/dotnet/coreclr/commit/0382455522962275c0f9b0bbe9629b789e9d103e

src/libraries/System.Private.CoreLib/src/System/IO/BinaryReader.cs

index 1f1b921..bc0300a 100644 (file)
@@ -150,7 +150,7 @@ namespace System.IO
 
             int charsRead = 0;
             int numBytes = 0;
-            long posSav = posSav = 0;
+            long posSav = 0;
 
             if (_stream.CanSeek)
             {