aboutsummaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-08-21 23:15:44 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-08-22 02:27:34 +0200
commit915be88ddcebac61dc06cc47668961b602e01b38 (patch)
tree6e54b04979b3c9c10f5f92191ed54be06a59e420 /http.c
parent15686de86f15866041107bd9830834636008fe1b (diff)
http.c: Remove unused variable
Diffstat (limited to 'http.c')
-rw-r--r--http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/http.c b/http.c
index 514d821..0b058dc 100644
--- a/http.c
+++ b/http.c
@@ -1784,7 +1784,7 @@ static int apply_from_mem(struct http_ctx *const h, struct form *const f)
return 1;
const struct http_cfg_post *const cfg = &h->cfg.post;
- struct http_post_pair *pairs, *p;
+ struct http_post_pair *pairs;
const size_t n = m->npairs + 1;
if (n > cfg->max_pairs)