Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fd3132d5 authored by Steven Rostedt's avatar Steven Rostedt Committed by Steven Rostedt
Browse files

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
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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`