aboutsummaryrefslogtreecommitdiff
path: root/insmod.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-06-26 11:16:22 +0000
committerEric Andersen <andersen@codepoet.org>2000-06-26 11:16:22 +0000
commitef40aa81c5024bc305a4e95f6edb76bae258cc2b (patch)
tree8639d692540490e21de99f0be54b8b4d6d698456 /insmod.c
parent3adffb7fc86ece4a9c8f550abf049a459f1ea1f6 (diff)
downloadbusybox-ef40aa81c5024bc305a4e95f6edb76bae258cc2b.tar.gz
* Fixed insmod module option parsing for options lacking an '='.
Fix thanks to Marc Nijdam <marc_nijdam@hp.com> -Erik
Diffstat (limited to 'insmod.c')
-rw-r--r--insmod.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/insmod.c b/insmod.c
index f6575c97f..006468877 100644
--- a/insmod.c
+++ b/insmod.c
@@ -71,7 +71,7 @@
#ifndef MODUTILS_MODULE_H
#define MODUTILS_MODULE_H 1
-#ident "$Id: insmod.c,v 1.10 2000/06/22 18:19:31 andersen Exp $"
+#ident "$Id: insmod.c,v 1.11 2000/06/26 11:16:22 andersen Exp $"
/* This file contains the structures used by the 2.0 and 2.1 kernels.
We do not use the kernel headers directly because we do not wish
@@ -277,7 +277,7 @@ int delete_module(const char *);
#ifndef MODUTILS_OBJ_H
#define MODUTILS_OBJ_H 1
-#ident "$Id: insmod.c,v 1.10 2000/06/22 18:19:31 andersen Exp $"
+#ident "$Id: insmod.c,v 1.11 2000/06/26 11:16:22 andersen Exp $"
/* The relocatable object is manipulated using elfin types. */
@@ -1189,8 +1189,10 @@ old_process_module_arguments(struct obj_file *f, int argc, char **argv)
int *loc;
p = *argv;
- if ((q = strchr(p, '=')) == NULL)
+ if ((q = strchr(p, '=')) == NULL) {
+ argc--;
continue;
+ }
*q++ = '\0';
sym = obj_find_symbol(f, p);
@@ -1550,8 +1552,10 @@ new_process_module_arguments(struct obj_file *f, int argc, char **argv)
int min, max, n;
p = *argv;
- if ((q = strchr(p, '=')) == NULL)
+ if ((q = strchr(p, '=')) == NULL) {
+ argc--;
continue;
+ }
key = alloca(q - p + 6);
memcpy(key, "parm_", 5);