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

pull/116/head
William Pitcock 2017-02-03 12:53:50 -06:00
parent 42d65b14c7
commit fe40bc33f8
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++;