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: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
parent
744ffcbe86
commit
fd3132d581
1 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,10 @@ dump_config() {
|
|||
return
|
||||
fi
|
||||
end=`$binoffset $file $IKCFG_ED 2>/dev/null`
|
||||
[ "$?" != "0" ] && end="-1"
|
||||
if [ "$end" -eq "-1" ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
start=`expr $start + 8`
|
||||
size=`expr $end - $start`
|
||||
|
|
Loading…
Reference in a new issue