提交 fd3132d5 编写于 作者: S Steven Rostedt 提交者: Steven Rostedt

kconfig: add check if end exists in extract-ikconfig

Both start and end should be tested for existence before continuing
to parse the config.gz file.
Signed-off-by: NSteven Rostedt <rostedt@goodmis.org>
上级 744ffcbe
...@@ -17,6 +17,10 @@ dump_config() { ...@@ -17,6 +17,10 @@ dump_config() {
return return
fi fi
end=`$binoffset $file $IKCFG_ED 2>/dev/null` end=`$binoffset $file $IKCFG_ED 2>/dev/null`
[ "$?" != "0" ] && end="-1"
if [ "$end" -eq "-1" ]; then
return
fi
start=`expr $start + 8` start=`expr $start + 8`
size=`expr $end - $start` size=`expr $end - $start`
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册