Fixed problem with missing boundary in POST request

SVN revision: 2175
This commit is contained in:
Stefan Ritt 2009-02-13 17:57:00 +00:00
parent 0773a09002
commit 6e57b305f4

View File

@ -26594,6 +26594,11 @@ void decode_post(char *logbook, LOGBOOK * lbs, const char *string, const char *b
if (setparam(item, str) == 0)
return;
}
} else {
strlcpy(str, p, sizeof(str));
if (setparam(item, str) == 0)
return;
string = p + strlen(p);
}
}