Skip to content

Commit

Permalink
Update MDNS component
Browse files Browse the repository at this point in the history
  • Loading branch information
MG-5 committed Jun 3, 2024
1 parent fa2a6fb commit d876b66
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion managed_components/espressif__mdns/.component_hash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9ff9c578fc3a5ea3c68e807233e47f2ce6b2492a92d7a9356ae5c29ab45f0fde
ed10ef031bce505e423c5dbf0fdf2ce7a02df5f9ebffb18df2d6b9852e48817d
2 changes: 1 addition & 1 deletion managed_components/espressif__mdns/.cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ commitizen:
bump_message: 'bump(mdns): $current_version -> $new_version'
pre_bump_hooks: python ../../ci/changelog.py mdns
tag_format: mdns-v$version
version: 1.3.0
version: 1.3.1
version_files:
- idf_component.yml
6 changes: 6 additions & 0 deletions managed_components/espressif__mdns/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.3.1](https://github.com/espressif/esp-protocols/commits/mdns-v1.3.1)

### Bug Fixes

- free txt value len ([afd98bb](https://github.com/espressif/esp-protocols/commit/afd98bb))

## [1.3.0](https://github.com/espressif/esp-protocols/commits/mdns-v1.3.0)

### Features
Expand Down
4 changes: 2 additions & 2 deletions managed_components/espressif__mdns/idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies:
description: mDNS
repository: git://github.com/espressif/esp-protocols.git
repository_info:
commit_sha: 887dbcd73b3d7d42bde76b43d6942dbc62e76a63
commit_sha: c9439bd3d57f4941c980476f9961ff04687a9f7a
path: components/mdns
url: https://github.com/espressif/esp-protocols/tree/master/components/mdns
version: 1.3.0
version: 1.3.1
4 changes: 2 additions & 2 deletions managed_components/espressif__mdns/mdns.c
Original file line number Diff line number Diff line change
Expand Up @@ -4739,7 +4739,7 @@ static void _mdns_search_result_add_txt(mdns_search_once_t *search, mdns_txt_ite
free((char *)(txt[i].value));
}
free(txt);
free(r->txt_value_len);
free(txt_value_len);
}

/**
Expand Down Expand Up @@ -7437,7 +7437,7 @@ static void _mdns_browse_result_add_txt(mdns_browse_t *browse, const char *insta
free((char *)(txt[i].value));
}
free(txt);
free(r->txt_value_len);
free(txt_value_len);
return;
}

Expand Down
1 change: 1 addition & 0 deletions sdkconfig
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ CONFIG_APPTRACE_LOCK_ENABLE=y
# Bluetooth
#
# CONFIG_BT_ENABLED is not set
CONFIG_BT_ALARM_MAX_NUM=50
# end of Bluetooth

#
Expand Down

0 comments on commit d876b66

Please sign in to comment.