fix #122: uninitialized vars in REST_Setup

pull/140/merge
Thorsten von Eicken 9 years ago
parent 8b4749fb90
commit ccbe99de82
  1. 3
      rest/rest.c

@ -200,7 +200,8 @@ rest_dns_found(const char *name, ip_addr_t *ipaddr, void *arg) {
void ICACHE_FLASH_ATTR void ICACHE_FLASH_ATTR
REST_Setup(CmdPacket *cmd) { REST_Setup(CmdPacket *cmd) {
CmdRequest req; CmdRequest req;
uint32_t port, security; uint16_t port;
uint8_t security;
int32_t err = -1; // error code in case of failure int32_t err = -1; // error code in case of failure
// start parsing the command // start parsing the command

Loading…
Cancel
Save