libpkgconf: argvsplit: do not consider ' or " to be equivalent to \ (#111)

William Pitcock 2017-02-03 12:53:50 -06:00
parent 159f18a84d
commit 22db6891dd
1 changed files with 0 additions and 5 deletions

View File

@ -111,11 +111,6 @@ pkgconf_argv_split(const char *src, int *argc, char ***argv)
}
else switch(*src_iter)
{
case '"':
case '\'':
quote = *src_iter;
break;
case '\\':
src_iter++;