diff options
author | rubidium <rubidium@openttd.org> | 2010-11-14 12:05:24 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-11-14 12:05:24 +0000 |
commit | 673b3711b44f019fb5869546b4a3dc2b78882c2a (patch) | |
tree | 1404f7ae1cbaa3d7147cdc670f641e2038eeb4d6 /src/network/core | |
parent | a9da53c1068f9279ae82a557d46ece01f5beecd1 (diff) | |
download | openttd-673b3711b44f019fb5869546b4a3dc2b78882c2a.tar.xz |
(svn r21182) -Fix: possible just-freed memory reads
Diffstat (limited to 'src/network/core')
-rw-r--r-- | src/network/core/tcp.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/network/core/tcp.cpp b/src/network/core/tcp.cpp index 77afac131..3f59efba9 100644 --- a/src/network/core/tcp.cpp +++ b/src/network/core/tcp.cpp @@ -82,6 +82,8 @@ void NetworkTCPSocketHandler::Send_Packet(Packet *packet) * data right now (full network-buffer, it happens ;)) * 3) sending took too long * @param closing_down Whether we are closing down the connection. + * @return \c true if a (part of a) packet could be sent and + * the connection is not closed yet. */ bool NetworkTCPSocketHandler::Send_Packets(bool closing_down) { |