Remove a redundant call to alloca.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@231 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Tim Cava
2013-02-23 20:57:24 +00:00
parent e99861dbfb
commit a7c93a3950

View File

@@ -1043,7 +1043,6 @@ void run_user_flag(char *name, char *what, NickList *user, NickList *kicker)
}
if ((tmp = expand_alias(what, empty_string, &sa, NULL)))
{
stuff_copy = alloca(strlen(tmp) + 1);
name_copy = LOCAL_COPY(name);
stuff_copy = LOCAL_COPY(tmp);
will_catch_return_exceptions++;