8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d964873 commit e831680Copy full SHA for e831680
libraries/BLE/src/BLEClient.cpp
@@ -60,6 +60,7 @@ BLEClient::~BLEClient() {
60
delete myPair.second;
61
}
62
m_servicesMap.clear();
63
+ m_servicesMapByInstID.clear();
64
} // ~BLEClient
65
66
libraries/BLE/src/BLERemoteCharacteristic.cpp
@@ -52,6 +52,7 @@ BLERemoteCharacteristic::BLERemoteCharacteristic(
52
*/
53
BLERemoteCharacteristic::~BLERemoteCharacteristic() {
54
removeDescriptors(); // Release resources for any descriptor information we may have allocated.
55
+ free(m_rawData);
56
} // ~BLERemoteCharacteristic
57
58
0 commit comments