diff options
-rw-r--r-- | src/net/SocketAddress.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/SocketAddress.cxx b/src/net/SocketAddress.cxx index a3abb8c3f..a845cb8de 100644 --- a/src/net/SocketAddress.cxx +++ b/src/net/SocketAddress.cxx @@ -66,7 +66,7 @@ SocketAddress::GetLocalRaw() const noexcept const auto start = (const char *)sun; const auto path = sun->sun_path; const size_t header_size = path - start; - if (size < header_size) + if (size < size_type(header_size)) /* malformed address */ return nullptr; |