Re: bug ? ./configure in bash.git.devel ran twice

2021-10-09 Thread Dominique Martinet
be needed when cloning from git or when updating the files. -- Dominique Martinet | Asmadeus

Re: Using systemd-249's libnss_systemd.so.2 triggers a crash in bash-5.1's malloc.c

2021-10-04 Thread Dominique Martinet
Hello, (I've been following this with Julien as I can reproduce the behaviour on my nixos system -- you don't have to run the latest systemd, just install the derivation and use its path in LD_LIBRARY_PATH instead of the system's... That also probably could bring its own set of incompatibility

Re: Using systemd-249's libnss_systemd.so.2 triggers a crash in bash-5.1's malloc.c

2021-10-04 Thread Dominique Martinet
Dominique Martinet wrote on Tue, Oct 05, 2021 at 09:15:48AM +0900: > - I could reproduce the same as Julien, with -DDISABLE_MALLOC_WRAPPERS > the crash still happens when bash is run directly but nothing complains > in valgrind. > This could mean that systemd is overflowing bash mallo

Re: Using systemd-249's libnss_systemd.so.2 triggers a crash in bash-5.1's malloc.c

2021-10-04 Thread Dominique Martinet
Chet Ramey wrote on Mon, Oct 04, 2021 at 09:23:11PM -0400: > > - I could reproduce the same as Julien, with -DDISABLE_MALLOC_WRAPPERS > > the crash still happens when bash is run directly but nothing complains > > in valgrind. > > I assume you mean using systemd. Has anyone tried running a bash

Re: Using systemd-249's libnss_systemd.so.2 triggers a crash in bash-5.1's malloc.c

2021-10-05 Thread Dominique Martinet
Chet Ramey wrote on Mon, Oct 04, 2021 at 10:11:10PM -0400: > > I'm running busybox sh in a unit (which starts properly), then > > interactively test things from there. > > > > Running in gdb does fail the same way as running normally, so I've also > > been looking at that a bit, but nothing

Re: Strange complete -C output

2021-11-20 Thread Dominique Martinet
is another mailing list run by this community: https://lists.gnu.org/mailman/listinfo/help-bash -- Asmadeus | Dominique Martinet

Re: 5.1 regression?

2022-08-01 Thread Dominique Martinet
Harald Dunkel wrote on Mon, Aug 01, 2022 at 09:08:40AM +0200: > a colleague pointed me to a changed behavior of bash 5.1.4 in Debian 11. > Would you mind to take a look at this code? > > > #! /bin/bash > # set -x > > insert() > { >local data="$1" >local lineNumber="$2" > >head

Re: maybe a bug in bash?

2023-06-29 Thread Dominique Martinet
Sebastian Luhnburg wrote on Thu, Jun 29, 2023 at 11:55:12AM +0200: > initial_password="\$abc" > echo "initial password: " $initial_password > printf -v password '%q' $initial_password > echo "initial password with escaped characters: " $password > bash << EOF > echo "password in here document: "

Re: maybe a bug in bash?

2023-06-30 Thread Dominique Martinet
Sebastian Luhnburg wrote on Fri, Jun 30, 2023 at 03:47:57PM +0200: > /bin/bash -c "echo 'password in subshell in here document: ' ${password@Q}" ${password@Q} is still within double quotes in your here-document here; these quotes are breaking the escaping you used. This would be out of quotes:

Re: maybe a bug in bash?

2023-06-30 Thread Dominique Martinet
read /proc which is pretty much everyone by default) Anyway, I agree on need-more-info and I'll probably stop replying to this; there's been enough helpful answers. -- Dominique Martinet | Asmadeus