From 87584d10f6c38705eb8a60ea27c2bde4c7b4fa3b Mon Sep 17 00:00:00 2001 From: aurel Date: Fri, 15 Apr 2005 14:52:33 +0000 Subject: when parsing one cmd argument, only un-escape _this_ argument, not the following ones git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15163 b3059339-0415-0410-9bf9-f77b7e298cf2 --- input/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'input') diff --git a/input/input.c b/input/input.c index 402c11b8a3..1427a0cfb0 100644 --- a/input/input.c +++ b/input/input.c @@ -628,7 +628,7 @@ mp_input_parse_cmd(char* str) { } else if(!e) e = ptr+strlen(ptr); l = e-start; ptr2 = start; - for(e = strchr(ptr2,'\\') ; e ; e = strchr(ptr2,'\\')) { + for(e = strchr(ptr2,'\\') ; e && e