diff options
-rw-r--r-- | libopkg/opkg.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libopkg/opkg.c b/libopkg/opkg.c index a749bf9..b94ad55 100644 --- a/libopkg/opkg.c +++ b/libopkg/opkg.c @@ -295,7 +295,7 @@ opkg_get_option (opkg_t *opkg, char *option, void **value) void opkg_set_option (opkg_t *opkg, char *option, void *value) { - int i = 0; + int i = 0, found = 0; opkg_option_t *options; opkg_assert (opkg != NULL); @@ -311,11 +311,18 @@ opkg_set_option (opkg_t *opkg, char *option, void *value) { if (strcmp (options[i].name, option) == 0) { + found = 1; break; } i++; } + if (!found) + { + /* XXX: Warning: Option not found */ + return; + } + /* set the option */ switch (options[i].type) { |