Commit Diff
Diff:
e9be3334d1f0a40e44aac7754d828a4ce28a94b7
0d9740b9fa1a432d35f73fafa7fb2ecd9a435502
Commit:
0d9740b9fa1a432d35f73fafa7fb2ecd9a435502
Tree:
826ea7d711f29225c33fe27e9b3345ad0e221f86
Author:
Alexander Barton <alex@barton.de>
Committer:
Alexander Barton <alex@barton.de>
Date:
Mon Mar 12 21:27:55 2012 UTC
Message:
Fix gcc warning, initialize "list" variable to NULL This fixes the following warning with gcc 4.6.3.: irc-mode.c: In function "Channel_Mode": irc-mode.c:947:26: error: "list" may be used uninitialized in this function irc-mode.c:884:25: error: "list" may be used uninitialized in this function (The variable has never been used uninitialized, so don't worry)
blob - 80b2949038b7cce6084537f771d21dd398f095a7
blob + fa35cdd0f29d7742d92c169f6ce992a56eaa1ca5
--- src/ngircd/irc-mode.c
+++ src/ngircd/irc-mode.c
@@ -856,7 +856,7 @@ Add_To_List(char what, CLIENT *Prefix, CLIENT *Client,
const char *Pattern)
{
const char *mask;
- struct list_head *list;
+ struct list_head *list = NULL;
long int current_count;
assert(Client != NULL);
@@ -923,7 +923,7 @@ Del_From_List(char what, CLIENT *Prefix, CLIENT *Clien
const char *Pattern)
{
const char *mask;
- struct list_head *list;
+ struct list_head *list = NULL;
assert(Client != NULL);
assert(Channel != NULL);
IRCNow