tcsh-org / tcsh

This is a read-only mirror of the tcsh code repository.
https://www.tcsh.org/
Other
232 stars 42 forks source link

Fix https://github.com/tcsh-org/tcsh/issues/24 #27

Closed alzwded closed 4 years ago

alzwded commented 4 years ago

bad invocation of xrealloc not taking the size of the underlying data type into account.

make check passes on centos7/gcc 4.8.5 with gcc -m32

the particular gas test passes on FreeBSD 12.0-RELEASE amd64 with CC="gcc -m32"

alzwded commented 4 years ago

Tests pass on centos7.7 amd64, with a plain

./configure
make
make check

(i.e. not the 32bit build)

alzwded commented 4 years ago

And that test passes on 64bit FreeBSD 12.0 with gcc.

suominen commented 4 years ago

Thank you, merged!

zoulasc commented 4 years ago

Thanks!