diff options
author | nicm <nicm> | 2015-11-24 09:34:55 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-24 09:34:55 +0000 |
commit | b32ce34cf2b5e48eab4f626f378d50f365b594a3 (patch) | |
tree | 68e20a595a86f22211e35d21c3b141d029562a0e /options-table.c | |
parent | 2adf3f42ee451b30ef492229dac322808f93d8dc (diff) | |
download | rtmux-b32ce34cf2b5e48eab4f626f378d50f365b594a3.tar.gz rtmux-b32ce34cf2b5e48eab4f626f378d50f365b594a3.tar.bz2 rtmux-b32ce34cf2b5e48eab4f626f378d50f365b594a3.zip |
Don't allow options in table without scope set.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index dc4922ba..0dab0c0e 100644 --- a/options-table.c +++ b/options-table.c @@ -892,6 +892,8 @@ options_table_populate_tree(enum options_table_scope scope, struct options *oo) const struct options_table_entry *oe; for (oe = options_table; oe->name != NULL; oe++) { + if (oe->scope == OPTIONS_TABLE_NONE) + fatalx("no scope for %s", oe->name); if (oe->scope != scope) continue; switch (oe->type) { |