]> git.tue.mpg.de Git - paraslash.git/commit
net.c: Fix a memory leak in makesock().
authorAndre Noll <maan@systemlinux.org>
Thu, 17 Jan 2008 20:40:38 +0000 (21:40 +0100)
committerAndre Noll <maan@systemlinux.org>
Thu, 17 Jan 2008 20:40:38 +0000 (21:40 +0100)
commit3c6cd36c4ecfb4a6fb3fba6f04ee761c534fceac
tree636b1ee6d2c2a41d7e9aef256470bbcac63cf801
parent3d957dbd1021332f58fecdb11394af832de59bd8
net.c: Fix a memory leak in makesock().

"port" was allocated dynamically but never freed. Fix it by
using a static buffer instead. This buffer can not overflow as
"port_number" is an unsigned short, so its decimal representation
consists of at most 5 digits.
net.c