mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-05 04:08:01 +02:00
wwan: don't assume DNS info is always available for IPv6
See also "5df024f57a wwan: don't assume DNS info is always available" which does the same for IPv4. (cherry picked from commitcec7ade86c) (cherry picked from commit00f14736e6) (cherry picked from commit7c09527d5e) (cherry picked from commite3e86af74e) (cherry picked from commit0e812da25e)
This commit is contained in:
parent
0a95b1a593
commit
26b4122825
1 changed files with 1 additions and 1 deletions
|
|
@ -1033,7 +1033,7 @@ stage3_ip6_done (NMModemBroadband *self)
|
|||
|
||||
/* DNS servers */
|
||||
dns = mm_bearer_ip_config_get_dns (self->_priv.ipv6_config);
|
||||
for (i = 0; dns[i]; i++) {
|
||||
for (i = 0; dns && dns[i]; i++) {
|
||||
struct in6_addr addr;
|
||||
|
||||
if (inet_pton (AF_INET6, dns[i], &addr)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue