diff options
author | Aaron Marks <nymacro@gmail.com> | 2004-12-23 09:49:56 +0000 |
---|---|---|
committer | Aaron Marks <nymacro@gmail.com> | 2004-12-23 09:49:56 +0000 |
commit | db4fd250723ad6121059a71f1cac0e87eb91e695 (patch) | |
tree | 38a8b6f9ced4411aa2d7650f50e8a0cfcf5b19eb | |
parent | de6b321862d4f0329326bdc44934614df5e411ea (diff) | |
download | mana-client-db4fd250723ad6121059a71f1cac0e87eb91e695.tar.gz mana-client-db4fd250723ad6121059a71f1cac0e87eb91e695.tar.bz2 mana-client-db4fd250723ad6121059a71f1cac0e87eb91e695.tar.xz mana-client-db4fd250723ad6121059a71f1cac0e87eb91e695.zip |
Fixed up iptostring() memory leak.
-rw-r--r-- | src/net/network.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/network.cpp b/src/net/network.cpp index 0cb41750..b030d92d 100644 --- a/src/net/network.cpp +++ b/src/net/network.cpp @@ -49,12 +49,12 @@ void WFIFOSET(int len) { /** Convert an address from int format to string */ char *iptostring(int address) { short temp1, temp2; + static char asciiIP[16]; - char *temp = (char *)malloc(sizeof(char[20])); temp1 = LOWORD(address); temp2 = HIWORD(address); - sprintf(temp, "%i.%i.%i.%i", LOBYTE(temp1), HIBYTE(temp1), LOBYTE(temp2), HIBYTE(temp2)); - return temp; + sprintf(asciiIP, "%i.%i.%i.%i", LOBYTE(temp1), HIBYTE(temp1), LOBYTE(temp2), HIBYTE(temp2)); + return asciiIP; } /** Open a session with a server */ |