[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Seg fault on "echo ~nosuchuser"
From: |
Eric Pruitt |
Subject: |
Re: Seg fault on "echo ~nosuchuser" |
Date: |
Thu, 28 May 2020 20:20:55 -0700 |
User-agent: |
Mutt/1.10.1 (2018-07-13) |
On Thu, May 28, 2020 at 03:12:47PM -0700, Keith Thompson wrote:
> I see this problem on copies of bash 5.0.16 and 5.0.17 built from
> sourced on Ubuntu 20.04 LTS. It does *not* occur with the /bin/bash
> GNU bash, version 5.0.16(1)-release (x86_64-pc-linux-gnu)
> provided by the distribution. I haven't verified how far
> back this goes.
For what it's worth, I cannot reproduce this on Bash 5.0.17 compiled
with musl 1.2.0 or glibc 2.28 on Debian 10, GCC 8.3.0.
musl:
~$ bash --version
GNU bash, version 5.0.17(1)-release (x86_64-pc-linux-gnu)
...
~$ bash -c 'echo ~nosuchuser'
~nosuchuser
glibc:
bash-5.0$ ldd --version
ldd (Debian GLIBC 2.28-10) 2.28
...
bash-5.0$ ./bash --version
GNU bash, version 5.0.17(2)-release (x86_64-pc-linux-gnu)
...
bash-5.0$ ./bash -c 'echo ~nosuchuser'
~nosuchuser
Eric