Merge pull request #13888 from kb2ma/gcoap_cli/fix_variable_scope
examples/gcoap: fix variable scope
This commit is contained in:
commit
a5ba4aef7f
@ -279,14 +279,13 @@ static bool _parse_endpoint(sock_udp_ep_t *remote,
|
|||||||
static size_t _send(uint8_t *buf, size_t len, char *addr_str, char *port_str)
|
static size_t _send(uint8_t *buf, size_t len, char *addr_str, char *port_str)
|
||||||
{
|
{
|
||||||
size_t bytes_sent;
|
size_t bytes_sent;
|
||||||
|
|
||||||
sock_udp_ep_t *remote;
|
sock_udp_ep_t *remote;
|
||||||
|
sock_udp_ep_t new_remote;
|
||||||
|
|
||||||
if (_proxied) {
|
if (_proxied) {
|
||||||
remote = &_proxy_remote;
|
remote = &_proxy_remote;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
sock_udp_ep_t new_remote;
|
|
||||||
if (!_parse_endpoint(&new_remote, addr_str, port_str)) {
|
if (!_parse_endpoint(&new_remote, addr_str, port_str)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user