Commit 39073df8318364fc868ab6d90a345ea4fc66e864

Liu Dongmiao 2024-03-30T21:44:50

evutil: don't call memset before memcpy In `evutil_parse_sockaddr_port`, it would `memset` the `out` to zero, however, the `memset` is unnecessary before `memcpy`, and may cause undefined behavior if the `outlen` is invalid. This should close #1573.