[tor-commits] [flashproxy/master] maybe_quote needs to quote anything that's not an identifier.

dcf at torproject.org dcf at torproject.org
Mon Apr 9 04:08:42 UTC 2012


commit 021b7e0e23ae3621d22bad82a8ace5ce49d9a300
Author: David Fifield <david at bamsoftware.com>
Date:   Mon Mar 12 22:24:21 2012 -0700

    maybe_quote needs to quote anything that's not an identifier.
---
 flashproxy-test.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/flashproxy-test.js b/flashproxy-test.js
index e90d4b1..e4a59b9 100755
--- a/flashproxy-test.js
+++ b/flashproxy-test.js
@@ -34,7 +34,7 @@ function quote(s)
 
 function maybe_quote(s)
 {
-    if (/[\\\"]/.test(s))
+    if (!/^[a-zA-Z_]\w*$/.test(s))
         return quote(s);
     else
         return s;





More information about the tor-commits mailing list