Commit fd3132d5 authored by Steven Rostedt's avatar Steven Rostedt Committed by 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: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment