mirror of
https://github.com/osmarks/ngircd.git
synced 2025-04-05 15:26:56 +00:00
Fix GCC warnings for possibly uninitialized variables in IRC_JOIN
This patch fixes the following two warnings of GCC 4.2.4: irc-channel.c: In function "IRC_JOIN": irc-channel.c:185: warning: "lastkey" may be used uninitialized in this function irc-channel.c:185: warning: "lastchan" may be used uninitialized in this function
This commit is contained in:
parent
e142c50ae6
commit
258e39e89f
@ -182,7 +182,7 @@ join_send_topic(CLIENT *Client, CLIENT *target, CHANNEL *chan,
|
||||
GLOBAL bool
|
||||
IRC_JOIN( CLIENT *Client, REQUEST *Req )
|
||||
{
|
||||
char *channame, *key = NULL, *flags, *lastkey, *lastchan;
|
||||
char *channame, *key = NULL, *flags, *lastkey = NULL, *lastchan = NULL;
|
||||
CLIENT *target;
|
||||
CHANNEL *chan;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user