You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While run function [system_ip_address_from_str] and function [system_dns_server_set_address] in src/plugins/ietf-system/datastore/running/store.c at Line 360,367 , in func [ system_dns_server_set_address ] server->address.value = strdup(address.value); ,the address.value is null ,this results a segmentation fault;
I add address->value = str;after #else in func [system_ip_address_from_str] to solve this question;
The text was updated successfully, but these errors were encountered:
server->address.value = strdup(address.value);
,the address.value is null ,this results a segmentation fault;address->value = str;
after#else
in func [system_ip_address_from_str] to solve this question;The text was updated successfully, but these errors were encountered: