Browse Source

http_client Terminate exported commands list

The list of exported functions was not terminated, which caused a
segfault in find_mod_export_record() when reading outside the list.
Martin Larsson 9 năm trước cách đây
mục cha
commit
166e6d8030
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      modules/http_client/http_client.c

+ 1 - 0
modules/http_client/http_client.c

@@ -142,6 +142,7 @@ static cmd_export_t cmds[] = {
 		fixup_free_curl_get_redirect,
 		REQUEST_ROUTE|ONREPLY_ROUTE|FAILURE_ROUTE|BRANCH_ROUTE},
 	{"bind_http_client",  (cmd_function)bind_httpc_api,  0, 0, 0, 0},
+	{0,0,0,0,0,0}
 };