extras/CSVParser: Fixed escaped backslash followed by double quote
authorJerome St-Louis <jerome@ecere.com>
Mon, 22 Sep 2014 22:57:24 +0000 (18:57 -0400)
committerJerome St-Louis <jerome@ecere.com>
Wed, 9 Dec 2015 23:11:35 +0000 (18:11 -0500)
extras/CSVParser.ec

index 06b54f5..38fc5ce 100644 (file)
@@ -146,7 +146,7 @@ public:
                      end = c;
                   }
                }
-               if(options.escaped && ch == '\\')
+               if(!escaped && options.escaped && ch == '\\')
                   escaped = true;
                else
                   escaped = false;