Mem error in retained topics

pull/16/head
Martin Ger 2017-06-02 14:45:01 +02:00
rodzic d519cbb076
commit 0d735c8024
5 zmienionych plików z 17 dodań i 18 usunięć

3
.gitignore vendored
Wyświetl plik

@ -1,7 +1,6 @@
.cproject
.project
build/
firmware/
.settings/
.DS_Store
include/user_config.local.h
include/user_config.local.h

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -46,7 +46,7 @@ uint16_t i;
// list full
return false;
}
retained_list[i].topic = (uint8_t *)os_malloc(os_strlen(topic));
retained_list[i].topic = (uint8_t *)os_malloc(os_strlen(topic)+1);
if (retained_list[i].topic == NULL) {
// out of mem
return false;
@ -60,20 +60,27 @@ uint16_t i;
retained_list[i].topic = NULL;
os_free(retained_list[i].data);
retained_list[i].data = NULL;
retained_list[i].data_len = 0;
return true;
}
// not same size as before, new memory allocation
if (data_len != retained_list[i].data_len) {
os_free(retained_list[i].data);
if (retained_list[i].data == NULL) {
// no data till now, new memory allocation
retained_list[i].data = (uint8_t *)os_malloc(data_len);
if (retained_list[i].data == NULL) {
// out of mem
os_free(retained_list[i].topic);
retained_list[i].topic = NULL;
return false;
} else {
if (data_len != retained_list[i].data_len) {
// not same size as before, new memory allocation
os_free(retained_list[i].data);
retained_list[i].data = (uint8_t *)os_malloc(data_len);
}
}
if (retained_list[i].data == NULL) {
// out of mem
os_free(retained_list[i].topic);
retained_list[i].topic = NULL;
retained_list[i].data_len = 0;
return false;
}
os_memcpy(retained_list[i].data, data, data_len);
retained_list[i].data_len = data_len;

Wyświetl plik

@ -27,8 +27,6 @@ static void user_procTask(os_event_t *events);
static os_timer_t ptimer;
/* Some stats */
uint64_t Bytes_in, Bytes_out, Bytes_in_last, Bytes_out_last;
uint32_t Packets_in, Packets_out, Packets_in_last, Packets_out_last;
uint64_t t_old;
/* Hold the system wide configuration */
@ -240,9 +238,6 @@ void ICACHE_FLASH_ATTR console_handle_command(struct espconn *pespconn)
time/3600, (time%3600)/60, time%60);
ringbuf_memcpy_into(console_tx_buffer, response, os_strlen(response));
os_sprintf(response, "%d KiB in (%d packets)\r\n%d KiB out (%d packets)\r\n",
(uint32_t)(Bytes_in/1024), Packets_in,
(uint32_t)(Bytes_out/1024), Packets_out);
ringbuf_memcpy_into(console_tx_buffer, response, os_strlen(response));
if (connected) {
os_sprintf(response, "External IP-address: " IPSTR "\r\n", IP2STR(&my_ip));
@ -774,8 +769,6 @@ struct ip_info info;
connected = false;
do_ip_config = false;
my_ip.addr = 0;
Bytes_in = Bytes_out = Bytes_in_last = Bytes_out_last = 0,
Packets_in = Packets_out = Packets_in_last = Packets_out_last = 0;
t_old = 0;
console_rx_buffer = ringbuf_new(MAX_CON_CMD_SIZE);