Merge tag 'tag-chrome-platform-for-v5.12' of git://git.kernel.org/pub/scm/linux/kerne...
[linux-2.6-microblaze.git] / fs / binfmt_misc.c
index 3880a82..c457334 100644 (file)
@@ -153,7 +153,9 @@ static int load_misc_binary(struct linux_binprm *bprm)
        if (bprm->interp_flags & BINPRM_FLAGS_PATH_INACCESSIBLE)
                goto ret;
 
-       if (!(fmt->flags & MISC_FMT_PRESERVE_ARGV0)) {
+       if (fmt->flags & MISC_FMT_PRESERVE_ARGV0) {
+               bprm->interp_flags |= BINPRM_FLAGS_PRESERVE_ARGV0;
+       } else {
                retval = remove_arg_zero(bprm);
                if (retval)
                        goto ret;