summaryrefslogtreecommitdiff
path: root/gatchat/gatresult.c
diff options
context:
space:
mode:
Diffstat (limited to 'gatchat/gatresult.c')
-rw-r--r--gatchat/gatresult.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/gatchat/gatresult.c b/gatchat/gatresult.c
index 3d07e132..688b26b3 100644
--- a/gatchat/gatresult.c
+++ b/gatchat/gatresult.c
@@ -361,6 +361,17 @@ static gint skip_until(const char *line, int start, const char delim)
if (line[i] == delim)
return i;
+ if (line[i] == '\"') {
+ i += 1;
+ while (i < len && line[i] != '\"')
+ i += 1;
+
+ if (i < len)
+ i += 1;
+
+ continue;
+ }
+
if (line[i] != '(') {
i += 1;
continue;