Skip to content

Commit 4292f8b

Browse files
committed
Add user network interface check before reading hostname
1 parent f8cc3e4 commit 4292f8b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

connectivity/lwipstack/source/LWIPInterface.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -446,9 +446,11 @@ nsapi_error_t LWIP::add_ethernet_interface(EMAC &emac, bool default_if, OnboardN
446446
interface->memory_manager = &memory_manager;
447447
interface->ppp_enabled = false;
448448

449-
hostname = user_network_interface->get_hostname();
450-
if (hostname) {
451-
netif_set_hostname(&interface->netif, hostname);
449+
if (user_network_interface) {
450+
hostname = user_network_interface->get_hostname();
451+
if (hostname) {
452+
netif_set_hostname(&interface->netif, hostname);
453+
}
452454
}
453455

454456
#if (MBED_MAC_ADDRESS_SUM != MBED_MAC_ADDR_INTERFACE)

0 commit comments

Comments
 (0)