Author :
Liu Dongmiao
Date :
2024-03-30 21:44:50
Hash :39073df8 Message :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.