clang-tidy nullptr

This commit is contained in:
Erik Frojdh
2020-06-10 08:30:12 +02:00
parent 265e96d675
commit 5f91198328
3 changed files with 6 additions and 6 deletions

View File

@ -22,7 +22,7 @@ UdpRxSocket::UdpRxSocket(int port, ssize_t packet_size, const char *hostname,
hints.ai_socktype = SOCK_DGRAM;
hints.ai_protocol = 0;
hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
struct addrinfo *res = 0;
struct addrinfo *res = nullptr;
const std::string portname = std::to_string(port);
if (getaddrinfo(hostname, portname.c_str(), &hints, &res)) {