Fixed compilation error in expand.cpp

Fixed https://github.com/fish-shell/fish-shell/issues/401
This commit is contained in:
situ 2012-11-22 22:41:36 +05:30
parent 90495f3ac5
commit e53e00c4f9

View file

@ -517,12 +517,7 @@ bool process_iterator_t::next_process(wcstring *out_str, pid_t *out_pid)
signal_unblock();
/* The command line needs to be escaped */
wchar_t *first_arg = tok_first(full_command_line.c_str());
if (first_arg)
{
cmd = first_arg;
free(first_arg);
}
cmd = tok_first(full_command_line.c_str());
}
#ifdef SunOS
else if ((cmdfile=wfopen(path + L"/psinfo", "r")))