From 2afff93ade8207c8742da0fb156a37cbb58f0b82 Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Sun, 18 Mar 2001 16:54:35 +0000 Subject: [PATCH] (get_next_token): Fix indefinite loop bug scanning escaped quotes. --- nt/cmdproxy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nt/cmdproxy.c b/nt/cmdproxy.c index 267e00acc98..09a3c672e79 100644 --- a/nt/cmdproxy.c +++ b/nt/cmdproxy.c @@ -158,6 +158,7 @@ get_next_token (char * buf, char ** pSrc) if (p[0] == escape_char && escape_char != '"') { escape_char_run++; + p++; continue; } else if (p[0] == '"') -- 2.39.2