github-actions[bot] commented on code in PR #16617:
URL: https://github.com/apache/doris/pull/16617#discussion_r1125588905


##########
be/src/service/backend_options.cpp:
##########
@@ -101,6 +112,43 @@ bool BackendOptions::analyze_priority_cidrs() {
     return true;
 }
 
+bool BackendOptions::analyze_network_interfaces() {
+    if (config::network_interfaces == "") {
+        return true;
+    }
+    LOG(INFO) << "network interfaces in conf: " << config::network_interfaces;
+
+    struct ifaddrs * if_addr_struct = NULL;

Review Comment:
   warning: use nullptr [modernize-use-nullptr]
   
   ```suggestion
       struct ifaddrs * if_addr_struct = nullptr;
   ```
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to