1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 19:43:23 +02:00

Fix some ununitialized stuff

This commit is contained in:
Bram Matthys
2015-07-16 10:56:46 +02:00
parent 6eddc2685f
commit 9bd211d46e
4 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ int CommandExists(char *name)
Command *CommandAdd(Module *module, char *cmd, int (*func)(), unsigned char params, int flags)
{
Command *command;
Command *command = NULL;
aCommand *c;
if (find_Command_simple(cmd))