diff options
Diffstat (limited to 'hardinfo2/shell.c')
-rw-r--r-- | hardinfo2/shell.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hardinfo2/shell.c b/hardinfo2/shell.c index ca246704..34a2340e 100644 --- a/hardinfo2/shell.c +++ b/hardinfo2/shell.c @@ -485,6 +485,10 @@ static void add_modules_to_gui(gpointer data, gpointer user_data) ShellModule *module = (ShellModule *) data; GtkTreeStore *store = GTK_TREE_STORE(shelltree->model); GtkTreeIter parent; + + if (!module) { + return; + } gtk_tree_store_append(store, &parent, NULL); gtk_tree_store_set(store, &parent, TREE_COL_NAME, module->name, |