From 4e3aa10a121fe3b12085325ea4204fea5ae2baef Mon Sep 17 00:00:00 2001 From: Rejean Loyer Date: Mon, 30 Sep 2013 04:04:30 -0400 Subject: [PATCH] ide/debugger: Fixed improper escaping of ( and ) in C character --- ide/src/debugger/Debugger.ec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/src/debugger/Debugger.ec b/ide/src/debugger/Debugger.ec index a1d7e41..e7b23df 100644 --- a/ide/src/debugger/Debugger.ec +++ b/ide/src/debugger/Debugger.ec @@ -4573,7 +4573,7 @@ class Breakpoint : struct char * file; char * line; char fullPath[MAX_LOCATION]; - if(location[0] == '\(' && location[1] && (file = strchr(location+2, '\)')) && file[1]) + if(location[0] == '(' && location[1] && (file = strchr(location+2, ')')) && file[1]) { prjName = new char[file-location]; strncpy(prjName, location+1, file-location-1); -- 1.8.3.1