mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Avoid using uninitalized values.
This commit is contained in:
parent
9fd1e2f5da
commit
6e45d68399
3 changed files with 4 additions and 4 deletions
|
|
@ -163,7 +163,7 @@ static int module_load_name(const char *path, const char *rootmodule,
|
|||
GModule *gmodule;
|
||||
MODULE_REC *module;
|
||||
MODULE_FILE_REC *rec;
|
||||
gpointer value1, value2;
|
||||
gpointer value1, value2 = NULL;
|
||||
char *initfunc, *deinitfunc;
|
||||
int found;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue