mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
Make our getaddrinfo implementation initialize "struct addrinfo" return
value to NULL on errors. Originally committed as revision 22122 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
27dbc47c05
commit
a34fc5e23d
@ -78,6 +78,7 @@ int ff_getaddrinfo(const char *node, const char *service,
|
|||||||
return win_getaddrinfo(node, service, hints, res);
|
return win_getaddrinfo(node, service, hints, res);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
*res = NULL;
|
||||||
sin = av_mallocz(sizeof(struct sockaddr_in));
|
sin = av_mallocz(sizeof(struct sockaddr_in));
|
||||||
if (!sin)
|
if (!sin)
|
||||||
return EAI_FAIL;
|
return EAI_FAIL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user