aboutsummaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-06-14 21:26:43 +0000
committerMike Buland <eichlan@xagasoft.com>2010-06-14 21:26:43 +0000
commit97e228c38f312e455e50784146e8a76da7790f97 (patch)
treee9fbee7a7d64797d2cae233eb7eb6b5d75d34117 /src/client.cpp
parent5e5fa99148a14f45d162b43dfbf31db3eb110f0d (diff)
downloadlibbu++-97e228c38f312e455e50784146e8a76da7790f97.tar.gz
libbu++-97e228c38f312e455e50784146e8a76da7790f97.tar.bz2
libbu++-97e228c38f312e455e50784146e8a76da7790f97.tar.xz
libbu++-97e228c38f312e455e50784146e8a76da7790f97.zip
Fixed a minor memory leak in the server. It makes a difference on popular
servers that run for weeks or more.
Diffstat (limited to '')
-rw-r--r--src/client.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 88eb49d..095dd91 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -33,6 +33,7 @@ Bu::Client::~Client()
33 delete *i; 33 delete *i;
34 } 34 }
35 pTopStream = pSocket = NULL; 35 pTopStream = pSocket = NULL;
36 delete pfLink;
36} 37}
37 38
38void Bu::Client::processInput() 39void Bu::Client::processInput()