Avoid using uninitalized values.

This commit is contained in:
David Hill 2014-07-12 16:35:42 -04:00
commit 6e45d68399
3 changed files with 4 additions and 4 deletions

View file

@ -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;