Commit eacd3f35 authored by Eugene Ossintsev's avatar Eugene Ossintsev

Inspect POST buffer in mg_get_var() only if first call of get_var() returns -1

In mg_get_var() the first call of get_var() inspects the variables of
the query string. If the requested variable is found but the destination
buffer is too small to hold the variable, return -2 right away. If it's
not found, make the second call of get_var() to inspect the POST buffer.
parent 8a2aa725
......@@ -5043,7 +5043,7 @@ int mg_get_var(const struct mg_connection *conn, const char *name,
char *dst, size_t dst_len) {
int len = get_var(conn->query_string, conn->query_string == NULL ? 0 :
strlen(conn->query_string), name, dst, dst_len);
if (len < 0) {
if (len == -1) {
len = get_var(conn->content, conn->content_len, name, dst, dst_len);
}
return len;
......
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