Revert bogus fix, make a note that the var is meant to 'leak'

--HG--
extra : convert_revision : e0efd546c3cdb2828971e41af2afe43e850c641d
This commit is contained in:
Matt Johnston 2007-02-04 10:44:07 +00:00
parent d2f292b3ad
commit 55ed5531b5

View File

@ -348,7 +348,8 @@ static void addforward(char* origstr, struct TCPFwdList** fwdlist) {
TRACE(("enter addforward"))
/* We probably don't want to be editing argvs */
/* We need to split the original argument up. This var
is never free()d. */
str = m_strdup(origstr);
listenport = str;
@ -400,8 +401,6 @@ static void addforward(char* origstr, struct TCPFwdList** fwdlist) {
newfwd->next = *fwdlist;
*fwdlist = newfwd;
m_free(str);
TRACE(("leave addforward: done"))
return;