aboutsummaryrefslogtreecommitdiff
path: root/modutils
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-12-16 06:18:06 +0000
committerRob Landley <rob@landley.net>2005-12-16 06:18:06 +0000
commit199501f2a00956265a5dba74ea01badab6c331ac (patch)
tree9f6ead9e70d55f05a0fe82d9116e1b9dfc8299ec /modutils
parenta930bd333270166fd80a919deb36bfb40eb97f8c (diff)
downloadbusybox-w32-199501f2a00956265a5dba74ea01badab6c331ac.tar.gz
busybox-w32-199501f2a00956265a5dba74ea01badab6c331ac.tar.bz2
busybox-w32-199501f2a00956265a5dba74ea01badab6c331ac.zip
I screwed up the last commit: if dt is null when ENABLE_MULTIPLE_OPTIONS is
off, we'd dereference the null. Oops.
Diffstat (limited to 'modutils')
-rw-r--r--modutils/modprobe.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c
index c9e6701ef..844eb99c5 100644
--- a/modutils/modprobe.c
+++ b/modutils/modprobe.c
@@ -497,13 +497,15 @@ static struct dep_t *build_dep ( void )
497 if ( strcmp ( dt-> m_name, mod ) == 0 ) 497 if ( strcmp ( dt-> m_name, mod ) == 0 )
498 break; 498 break;
499 } 499 }
500 if ( ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS && dt ) { 500 if ( dt ) {
501 char* new_opt = NULL; 501 if ( ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ) {
502 while( ( opt = parse_command_string( opt, &new_opt ) ) ) { 502 char* new_opt = NULL;
503 dt-> m_options = append_option( dt-> m_options, new_opt ); 503 while( ( opt = parse_command_string( opt, &new_opt ) ) ) {
504 dt-> m_options = append_option( dt-> m_options, new_opt );
505 }
506 } else {
507 dt-> m_options = append_option( dt-> m_options, opt );
504 } 508 }
505 } else {
506 dt-> m_options = append_option( dt-> m_options, opt );
507 } 509 }
508 } 510 }
509 } 511 }