Explicitly set struct addrinfo to NULL if getaddrinfo failed instead of

assuming getaddrinfo will have done this.

Originally committed as revision 22123 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2010-02-28 22:33:22 +00:00
parent a34fc5e23d
commit 11a74f3639

View File

@ -159,6 +159,7 @@ static struct addrinfo* udp_resolve_host(const char *hostname, int port,
hints.ai_family = family;
hints.ai_flags = flags;
if ((error = getaddrinfo(node, service, &hints, &res))) {
res = NULL;
av_log(NULL, AV_LOG_ERROR, "udp_resolve_host: %s\n", gai_strerror(error));
}