summaryrefslogtreecommitdiffstats
path: root/mpvcore/input/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore/input/input.c')
-rw-r--r--mpvcore/input/input.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/mpvcore/input/input.c b/mpvcore/input/input.c
index 959d2aad3b..658f82f764 100644
--- a/mpvcore/input/input.c
+++ b/mpvcore/input/input.c
@@ -861,14 +861,11 @@ static int parse_cycle_dir(const struct m_option *opt, struct bstr name,
static bool read_token(bstr str, bstr *out_rest, bstr *out_token)
{
bstr t = bstr_lstrip(str);
- // Command separator
- if (t.len && t.start[0] == ';')
- return false;
- int next = bstrcspn(t, WHITESPACE "#");
- // Handle comments
- if (t.len && next < t.len && t.start[next] == '#')
- t = bstr_splice(t, 0, next);
- if (!t.len)
+ char nextc = t.len > 0 ? t.start[0] : 0;
+ if (nextc == '#' || nextc == ';')
+ return false; // comment or command separator
+ int next = bstrcspn(t, WHITESPACE);
+ if (!next)
return false;
*out_token = bstr_splice(t, 0, next);
*out_rest = bstr_cut(t, next);