X-Git-Url: https://git.kernelconcepts.de/?a=blobdiff_plain;f=fs%2Fbinfmt_misc.c;h=0c8869fdd14ebf9291eb700ccd099c910584910d;hb=3e36a16375eee390a9d80f99499fe630efa08128;hp=9be335fb8a7cd3f9f480d0c5a46de7cfbcdd1c1f;hpb=85d5b70d8a0681a362d075bf0d19b4ee8c6767ee;p=karo-tx-linux.git diff --git a/fs/binfmt_misc.c b/fs/binfmt_misc.c index 9be335fb8a7c..0c8869fdd14e 100644 --- a/fs/binfmt_misc.c +++ b/fs/binfmt_misc.c @@ -172,7 +172,10 @@ static int load_misc_binary(struct linux_binprm *bprm) goto _error; bprm->argc ++; - bprm->interp = iname; /* for binfmt_script */ + /* Update interp in case binfmt_script needs it. */ + retval = bprm_change_interp(iname, bprm); + if (retval < 0) + goto _error; interp_file = open_exec (iname); retval = PTR_ERR (interp_file);