Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > gnu.bash.bug > #14351 > unrolled thread

segfault when converting local indexed to associative array

Started byGrisha Levit <grishalevit@gmail.com>
First post2018-07-17 13:55 -0400
Last post2018-07-17 13:55 -0400
Articles 1 — 1 participant

Back to article view | Back to gnu.bash.bug


Contents

  segfault when converting local indexed to associative array Grisha Levit <grishalevit@gmail.com> - 2018-07-17 13:55 -0400

#14351 — segfault when converting local indexed to associative array

FromGrisha Levit <grishalevit@gmail.com>
Date2018-07-17 13:55 -0400
Subjectsegfault when converting local indexed to associative array
Message-ID<mailman.3723.1531850158.1292.bug-bash@gnu.org>
$ echo $BASH_VERSION
4.4.23(1)-release
$ f() { declare -a a; declare -A a; declare -p a; }; f
bash: declare: a: cannot convert indexed to associative array
declare -aA a
Segmentation fault: 11

This behavior is still present in the devel branch.

[toc] | [standalone]


Back to top | Article view | gnu.bash.bug


csiph-web