[tor-commits] [torbutton/master] Scope input and output stream vars for new identity.

mikeperry at torproject.org mikeperry at torproject.org
Wed Sep 14 09:27:41 UTC 2011


commit f709e14fe1881e9460c7815b4b9cefaa63faebec
Author: Mike Perry <mikeperry-git at fscked.org>
Date:   Wed Sep 14 02:26:37 2011 -0700

    Scope input and output stream vars for new identity.
    
    Found by Lunar.
---
 src/chrome/content/torbutton.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/chrome/content/torbutton.js b/src/chrome/content/torbutton.js
index 2e52830..1ebd6bb 100644
--- a/src/chrome/content/torbutton.js
+++ b/src/chrome/content/torbutton.js
@@ -1314,8 +1314,8 @@ function torbutton_send_ctrl_cmd(command) {
     var input = socket.openInputStream(3, 0, 0); // 3 == OPEN_BLOCKING|OPEN_UNBUFFERED
     var output = socket.openOutputStream(3, 0, 0); // 3 == OPEN_BLOCKING|OPEN_UNBUFFERED
 
-    inputStream     = Cc["@mozilla.org/binaryinputstream;1"].createInstance(Ci.nsIBinaryInputStream);
-    outputStream    = Cc["@mozilla.org/binaryoutputstream;1"].createInstance(Ci.nsIBinaryOutputStream);
+    var inputStream     = Cc["@mozilla.org/binaryinputstream;1"].createInstance(Ci.nsIBinaryInputStream);
+    var outputStream    = Cc["@mozilla.org/binaryoutputstream;1"].createInstance(Ci.nsIBinaryOutputStream);
 
     inputStream.setInputStream(input);
     outputStream.setOutputStream(output);



More information about the tor-commits mailing list