diff options
author | Cyrill V. Gorcunov <gorcunov@gmail.com> | 2007-01-05 16:37:02 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2007-01-05 23:55:29 -0800 |
commit | 73b8ed29ab3f6ad7204b4e61cfa87dc0c28d3019 (patch) | |
tree | b88a8cc5a6c0bca6755ff920f4a1372690cf93bf /scripts/kconfig/qconf.h | |
parent | f2e12bb272f2544d1504f982270e90ae3dcc4ff2 (diff) | |
download | kernel_samsung_crespo-73b8ed29ab3f6ad7204b4e61cfa87dc0c28d3019.zip kernel_samsung_crespo-73b8ed29ab3f6ad7204b4e61cfa87dc0c28d3019.tar.gz kernel_samsung_crespo-73b8ed29ab3f6ad7204b4e61cfa87dc0c28d3019.tar.bz2 |
[PATCH] qconf: fix SIGSEGV on empty menu items
qconf may cause SIGSEGV by trying to show debug information on empty menu
items
Signed-off-by: Cyrill V. Gorcunov <gorcunov@gmail.com>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'scripts/kconfig/qconf.h')
-rw-r--r-- | scripts/kconfig/qconf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h index 6fc1c5f..a397edb 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h @@ -273,6 +273,8 @@ protected: struct symbol *sym; struct menu *menu; bool _showDebug; + + int has_dbg_info; }; class ConfigSearchWindow : public QDialog { |