Hi,

Thanks for the timely bug fix. I believe there's still some improper quoting
on line 115 of binfmt-install
(https://salsa.debian.org/qemu-team/qemu/-/blob/9ce886cd819b1f9900b84c55f416977e8f418d27/debian/binfmt-install#L115).

Instead of:

    ifs="\$IFS"; IFS=:; set $action; IFS="\$ifs"

I believe it should be:

    ifs="$IFS"; IFS=:; set $action; IFS="$ifs"

I don't think this is causing any issues currently, but it could break future
modifications to binfmt-install, since the shell will interpret the characters
'$', 'i', 'f', and 's' as separators.

Reply via email to