From f29258c1c8f9447b3d3d943624f129c64aa4d109 Mon Sep 17 00:00:00 2001 From: Thorsten von Eicken Date: Sun, 3 Apr 2016 00:07:28 -0700 Subject: [PATCH] fix #122: uninitialized vars in REST_Setup --- rest/rest.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rest/rest.c b/rest/rest.c index 81e296a..3b43e0b 100644 --- a/rest/rest.c +++ b/rest/rest.c @@ -200,7 +200,8 @@ rest_dns_found(const char *name, ip_addr_t *ipaddr, void *arg) { void ICACHE_FLASH_ATTR REST_Setup(CmdPacket *cmd) { CmdRequest req; - uint32_t port, security; + uint16_t port; + uint8_t security; int32_t err = -1; // error code in case of failure // start parsing the command @@ -252,7 +253,7 @@ REST_Setup(CmdPacket *cmd) { os_free(client->pCon); } os_memset(client, 0, sizeof(RestClient)); - DBG_REST("REST: setup #%d host=%s port=%ld security=%ld\n", clientNum, rest_host, port, security); + DBG_REST("REST: setup #%d host=%s port=%d security=%d\n", clientNum, rest_host, port, security); client->resp_cb = cmd->value;