Skip to content

Commit

Permalink
Fixed Zigbee crash when removing ZbName (#21449)
Browse files Browse the repository at this point in the history
  • Loading branch information
s-hadinger authored May 20, 2024
1 parent e7f69eb commit 7253e83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file.
- Avoid connection errors when switching to safeboot to upload OTA firmware (#21428)
- Berry Leds matrix alternate more and error about 'bri' attribute (#21431)
- Wrong timeout in `WebQuery` and `webclient` since Core3
- Zigbee crash when removing `ZbName`

### Removed
- Support of old insecure fingerprint algorithm. Deprecated since v8.4.0 (#21417)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ bool Z_Device::setEPName(uint8_t ep, const char * name) {
}

void Z_Device::setStringAttribute(char*& attr, const char * str) {
if (nullptr == str) { str = PSTR(""); } // nullptr is considered empty string
if (nullptr == str) { str = ""; } // nullptr is considered empty string, don't use PROGMEM to avoid crash
size_t str_len = strlen(str);

if ((nullptr == attr) && (0 == str_len)) { return; } // if both empty, don't do anything
Expand Down

0 comments on commit 7253e83

Please sign in to comment.