execute function segfault fixed

This commit is contained in:
Samy BEN TAYEB 2025-06-19 11:44:32 +02:00
parent cc9fdebc07
commit c94837e9dc
2 changed files with 4 additions and 3 deletions

View file

@ -143,7 +143,8 @@ void cmd::dispatch(::User *user, Channel *channel, Server *server, std::string &
case 't': case 't':
if (command_name == "topic") { if (command_name == "topic") {
Topic(user, channel, server, line).execute(); Topic(user, channel, server, line).execute();
} }
break;
case 'w': case 'w':
if (command_name == "whois") { if (command_name == "whois") {
Whois(user, channel, server, line).execute(); Whois(user, channel, server, line).execute();

View file

@ -6,7 +6,7 @@
/* By: sben-tay <sben-tay@student.42.fr> +#+ +:+ +#+ */ /* By: sben-tay <sben-tay@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/24 17:29:48 by rparodi #+# #+# */ /* Created: 2025/05/24 17:29:48 by rparodi #+# #+# */
/* Updated: 2025/06/19 11:21:59 by rparodi ### ########.fr */ /* Updated: 2025/06/19 11:42:56 by sben-tay ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -51,7 +51,7 @@ void List::execute() {
std::ostringstream msg322; msg322 << ":localhost 322 " << _sender->getNickname() std::ostringstream msg322; msg322 << ":localhost 322 " << _sender->getNickname()
<< " " << (*it)->getName() << " " << << " " << (*it)->getName() << " " <<
(*it)->getUsers().size() << (*it)->getUsers().size() <<
" :" << _channel->getTopic() << "\r\n"; " :" << (*it)->getTopic() << "\r\n";
this->_sender->appendToWriteBuffer(msg322.str()); this->_sender->appendToWriteBuffer(msg322.str());
} }
} }