diff options
author | rubidium <rubidium@openttd.org> | 2008-09-29 16:27:02 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-09-29 16:27:02 +0000 |
commit | e7829c1a57014f8b40b4972ab5b45dbcf4bb067d (patch) | |
tree | 43b0c8873ef3d08bb3099e46a3bc152bc8cd010d /src/network | |
parent | a25d9bcc8b771e365097d96a459bca1b36c53408 (diff) | |
download | openttd-e7829c1a57014f8b40b4972ab5b45dbcf4bb067d.tar.xz |
(svn r14414) -Fix: replace instances of strncpy with strecpy as strncpy doesn't guarantee the resulting string is '\0'-terminated.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/core/host.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/host.cpp b/src/network/core/host.cpp index 70e9f57c7..5308bce04 100644 --- a/src/network/core/host.cpp +++ b/src/network/core/host.cpp @@ -162,7 +162,7 @@ static int NetworkFindBroadcastIPsInternal(uint32 *broadcast, int limit) // !GET if (req->ifr_addr.sa_family == AF_INET) { struct ifreq r; - strncpy(r.ifr_name, req->ifr_name, lengthof(r.ifr_name)); + strecpy(r.ifr_name, req->ifr_name, lastof(r.ifr_name)); if (ioctl(sock, SIOCGIFFLAGS, &r) != -1 && r.ifr_flags & IFF_BROADCAST && ioctl(sock, SIOCGIFBRDADDR, &r) != -1) { |