Quellcode durchsuchen

Fix SL and WP compile.

Gert Driesen vor 8 Jahren
Ursprung
Commit
522ed129b2
1 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen
  1. 4 3
      src/Renci.SshNet/ScpClient.cs

+ 4 - 3
src/Renci.SshNet/ScpClient.cs

@@ -400,10 +400,11 @@ namespace Renci.SshNet
                 b = ReadByte(stream);
             }
 
-            if (hasError)
-                throw new ScpException(ConnectionInfo.Encoding.GetString(buffer.ToArray()));
+            var readBytes = buffer.ToArray();
 
-            return ConnectionInfo.Encoding.GetString(buffer.ToArray());
+            if (hasError)
+                throw new ScpException(ConnectionInfo.Encoding.GetString(readBytes, 0, readBytes.Length));
+            return ConnectionInfo.Encoding.GetString(readBytes, 0, readBytes.Length);
         }
     }
 }