mirror of https://github.com/arendst/Tasmota.git
Coming upstream changes: NimBLEService.cpp (#21120)
This commit is contained in:
parent
541f3630a1
commit
669bb582e0
|
@ -159,7 +159,7 @@ bool NimBLEService::start() {
|
||||||
// Nimble requires the last characteristic to have it's uuid = 0 to indicate the end
|
// Nimble requires the last characteristic to have it's uuid = 0 to indicate the end
|
||||||
// of the characteristics for the service. We create 1 extra and set it to null
|
// of the characteristics for the service. We create 1 extra and set it to null
|
||||||
// for this purpose.
|
// for this purpose.
|
||||||
pChr_a = new ble_gatt_chr_def[numChrs + 1];
|
pChr_a = new ble_gatt_chr_def[numChrs + 1]{};
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for(auto chr_it = m_chrVec.begin(); chr_it != m_chrVec.end(); ++chr_it) {
|
for(auto chr_it = m_chrVec.begin(); chr_it != m_chrVec.end(); ++chr_it) {
|
||||||
if((*chr_it)->m_removed > 0) {
|
if((*chr_it)->m_removed > 0) {
|
||||||
|
|
Loading…
Reference in New Issue