summaryrefslogtreecommitdiffstats
path: root/loader/modules.c
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-09-07 21:07:33 +0000
committerMatt Wilson <msw@redhat.com>2000-09-07 21:07:33 +0000
commitcf970b91b6d4536a748e736fd4b565e334bdae51 (patch)
tree0f950b451d1fadd25d698fa964f19eccf50aaeec /loader/modules.c
parentc2ea7707c64f9f330708d17ae46abfab1b376dcf (diff)
downloadanaconda-cf970b91b6d4536a748e736fd4b565e334bdae51.tar.gz
anaconda-cf970b91b6d4536a748e736fd4b565e334bdae51.tar.xz
anaconda-cf970b91b6d4536a748e736fd4b565e334bdae51.zip
set the module path to NULL on init, other japanese tweaks
Diffstat (limited to 'loader/modules.c')
-rw-r--r--loader/modules.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/loader/modules.c b/loader/modules.c
index 821dccf79..278355a5c 100644
--- a/loader/modules.c
+++ b/loader/modules.c
@@ -80,6 +80,7 @@ int mlReadLoadedList(moduleList * mlp) {
*end = '\0';
ml->mods[ml->numModules].name = strdup(start);
ml->mods[ml->numModules].args = NULL;
+ ml->mods[ml->numModules].path = NULL;
ml->mods[ml->numModules].weLoaded = 0;
*end = ' ';
ml->numModules++;