[Spice-devel] [PATCH] Fixed syntax error in debugger command.

Oliver Gutierrez ogutierrez at redhat.com
Thu Sep 8 12:51:58 UTC 2016


Debugger is not an object or command. It is a reserved word and DEBUG > 0 && syntax does not work with it
---
 spiceconn.js | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/spiceconn.js b/spiceconn.js
index 010a446..796f954 100644
--- a/spiceconn.js
+++ b/spiceconn.js
@@ -189,8 +189,10 @@ SpiceConn.prototype =
 
                 if (msg.type > 500)
                 {
-                    DEBUG > 0 && alert("Something has gone very wrong; we think we have message of type " + msg.type);
-                    DEBUG > 0 && debugger;
+                    if (DEBUG > 0) {
+                      alert("Something has gone very wrong; we think we have message of type " + msg.type);
+                      debugger;
+                    }
                 }
 
                 if (msg.size == 0)
-- 
2.7.4



More information about the Spice-devel mailing list