瀏覽代碼

Avoid initializing data.

drieseng 9 年之前
父節點
當前提交
74088c38a5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Renci.SshNet/Sftp/SftpSession.cs

+ 1 - 1
src/Renci.SshNet/Sftp/SftpSession.cs

@@ -328,7 +328,7 @@ namespace Renci.SshNet.Sftp
         {
             SshException exception = null;
 
-            var data = new byte[0];
+            byte[] data = null;
 
             using (var wait = new AutoResetEvent(false))
             {