From d9b9d71b2deddc2f20a4b1d9e7c57ff02dfe3951 Mon Sep 17 00:00:00 2001 From: Dmitry Frank <dmitry.frank@cesanta.com> Date: Mon, 4 Jan 2016 18:10:08 +0100 Subject: [PATCH] v7_apply() and friends take res as last argument PUBLISHED_FROM=4b064f5e4554c5a016481bf8104c0ba9dd244083 --- mongoose.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongoose.c b/mongoose.c index 1ae6227ad..d37db50a2 100644 --- a/mongoose.c +++ b/mongoose.c @@ -4615,7 +4615,7 @@ void http_handler(struct mg_connection *nc, int ev, void *ev_data) { /* Invoke callback. TODO(lsm): report errors */ v7_array_push(v7, args, v7_create_foreign(nc)); v7_array_push(v7, args, req); - if (v7_apply(v7, &res, v2, v7_create_undefined(), args) == V7_OK && + if (v7_apply(v7, v2, v7_create_undefined(), args, &res) == V7_OK && v7_is_true(v7, res)) { js_callback_handled_request++; } -- GitLab