Replace incorrect use of strncpy by av_strlcpy.

Only a real issue if inet_ntoa can actually return a string of more than 255 bytes.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29393 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-06-26 13:54:22 +00:00
parent eeb99c1c14
commit 437efdc855
1 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@
#include "network.h"
#include "stream.h"
#include "tcp.h"
#include "libavutil/avstring.h"
/* IPv6 options */
int network_prefer_ipv4 = 0;
@ -163,7 +164,7 @@ connect2Server_with_af(char *host, int port, int af,int verb) {
}
#if HAVE_INET_ATON || defined(HAVE_WINSOCK2_H)
strncpy( buf, inet_ntoa( *((struct in_addr*)our_s_addr) ), 255);
av_strlcpy( buf, inet_ntoa( *((struct in_addr*)our_s_addr) ), 255);
#else
inet_ntop(af, our_s_addr, buf, 255);
#endif