unquote_first_word: parse '' as an empty argument instead of no argument

This commit is contained in:
Richard Maw 2015-07-24 09:29:46 +00:00
parent 7ee7b225bd
commit 14e685c29d
2 changed files with 21 additions and 4 deletions

View file

@ -5379,13 +5379,19 @@ int unquote_first_word(const char **p, char **ret, UnquoteFlags flags) {
case VALUE:
if (c == 0)
goto finish;
else if (c == '\'')
else if (c == '\'') {
if (!GREEDY_REALLOC(s, allocated, sz+1))
return -ENOMEM;
state = SINGLE_QUOTE;
else if (c == '\\')
} else if (c == '\\')
state = VALUE_ESCAPE;
else if (c == '\"')
else if (c == '\"') {
if (!GREEDY_REALLOC(s, allocated, sz+1))
return -ENOMEM;
state = DOUBLE_QUOTE;
else if (strchr(WHITESPACE, c))
} else if (strchr(WHITESPACE, c))
state = SPACE;
else {
if (!GREEDY_REALLOC(s, allocated, sz+2))

View file

@ -1518,6 +1518,17 @@ static void test_unquote_first_word(void) {
assert_se(streq(t, "\\w+\b"));
free(t);
assert_se(p == original + 5);
p = original = "-N ''";
assert_se(unquote_first_word(&p, &t, UNQUOTE_CUNESCAPE) > 0);
assert_se(streq(t, "-N"));
free(t);
assert_se(p == original + 3);
assert_se(unquote_first_word(&p, &t, UNQUOTE_CUNESCAPE) > 0);
assert_se(streq(t, ""));
free(t);
assert_se(p == original + 5);
}
static void test_unquote_first_word_and_warn(void) {