Commit dd4c6d45 authored by Eric Wong's avatar Eric Wong

buffer2array: fix for trailing sub-quoted text inside a quoted context

Also added a unit test to check for errors/bugs to make sure we don't have regressions. Bug found by Qball. git-svn-id: https://svn.musicpd.org/mpd/trunk@4569 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 8e8d4fc6
...@@ -34,10 +34,12 @@ int cstrtok(char *buffer, char *array[], const int max) ...@@ -34,10 +34,12 @@ int cstrtok(char *buffer, char *array[], const int max)
array[i++] = ++c; array[i++] = ++c;
while (*c != '\0') { while (*c != '\0') {
if (*c == '\"') { if (*c == '\"') {
if (escape) if (escape) {
memmove(c - 1, c, memmove(c - 1, c,
strlen(c) + 1); strlen(c) + 1);
else { if (*c == '"')
break;
} else {
*(c++) = '\0'; *(c++) = '\0';
break; break;
} }
...@@ -62,3 +64,35 @@ int cstrtok(char *buffer, char *array[], const int max) ...@@ -62,3 +64,35 @@ int cstrtok(char *buffer, char *array[], const int max)
} }
return i; return i;
} }
#ifdef UNIT_TEST
#include <stdio.h>
#include <string.h>
#include <assert.h>
int main()
{
char *a[4] = { NULL };
char *b;
int i, max;
b = strdup("lsinfo \"/some/dir/name \\\"test\\\"\"");
max = cstrtok(b, a, 4);
assert( !strcmp("lsinfo", a[0]) );
assert( !strcmp("/some/dir/name \"test\"", a[1]) );
b = strdup("lsinfo \"/some/dir/name \\\"test\\\" something else\"");
max = cstrtok(b, a, 4);
assert( !strcmp("lsinfo", a[0]) );
assert( !strcmp("/some/dir/name \"test\" something else", a[1]) );
b = strdup("lsinfo \"/some/dir\\\\name\"");
max = cstrtok(b, a, 4);
assert( !strcmp("lsinfo", a[0]) );
assert( !strcmp("/some/dir\\name", a[1]) );
return 0;
}
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment