64tass: fix # lines limit calculations

The maximum {m,c}alloc block size is 2GiB (INT32_MAX) so clip the
calculations for max_lines and lines to the limit (INT32_MAX-1)/sizeof(ptr).
In this way at most 2GiB - 4 bytes may be allocated in one block.
This commit is contained in:
Jürgen Buchmüller 2020-04-22 20:19:21 +02:00
parent 8a09d89eac
commit a2d62fe7d2

View file

@ -1,7 +1,7 @@
# Template file for '64tass' # Template file for '64tass'
pkgname=64tass pkgname=64tass
version=1.55.2200 version=1.55.2200
revision=1 revision=2
wrksrc="64tass-${version}-src" wrksrc="64tass-${version}-src"
build_style=gnu-makefile build_style=gnu-makefile
make_build_args="prefix=/usr" make_build_args="prefix=/usr"