diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-10 02:01:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-10 02:01:51 +0000 |
commit | 3db254c8866de390c327d759ba615693e45aff6f (patch) | |
tree | 1dd0f6a0cc97f1f75a7b88d4488d4919ea2417bd /modutils/modprobe.c | |
parent | 6cee58e9cfedfa09ede3f5499eb5f635fc2bb77c (diff) | |
download | busybox-w32-1_8_1.tar.gz busybox-w32-1_8_1.tar.bz2 busybox-w32-1_8_1.zip |
apply accumulated post 1.8.0 fixes, bump version to 1.8.11_8_1
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r-- | modutils/modprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index f7d193a05..dafbb4ecd 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c | |||
@@ -791,7 +791,7 @@ static void check_dep(char *mod, struct mod_list_t **head, struct mod_list_t **t | |||
791 | if (*tail) | 791 | if (*tail) |
792 | (*tail)->m_next = find; | 792 | (*tail)->m_next = find; |
793 | find->m_prev = *tail; | 793 | find->m_prev = *tail; |
794 | /*find->m_next = NULL; - xzalloc did it */ | 794 | find->m_next = NULL; /* possibly NOT done by xzalloc! */ |
795 | 795 | ||
796 | if (!*head) | 796 | if (!*head) |
797 | *head = find; | 797 | *head = find; |