From 8e9e22b4d3c1b692c7367eaf142e8203ff1da7c2 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Thu, 19 Nov 2015 17:13:04 -0600 Subject: [PATCH] parse: handle_encap(): remove parv[0] initialization, anything using parv[0] should crash the ircd --- src/parse.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/parse.c b/src/parse.c index 3257d482e..190c9f08a 100644 --- a/src/parse.c +++ b/src/parse.c @@ -380,8 +380,6 @@ handle_encap(struct Client *client_p, struct Client *source_p, struct MessageEntry ehandler; MessageHandler handler = 0; - parv[0] = source_p->name; - mptr = irc_dictionary_retrieve(cmd_dict, command); if(mptr == NULL || mptr->cmd == NULL)