Openwrt/package/utils
Liangbin Lian 4bb9af48ca lua: lnum: fix strtoul based number parsing
Lua's LNUM patch currently doesn't parse properly certain numbers as
it's visible from the following simple tests.

On x86_64 host (stock Lua 5.1.5, expected output):

 $ /usr/bin/lua -e 'print(0x80000000); print(0x80000000000); print(0x100000000)'

  2147483648
  8796093022208
  4294967296

On x86_64 host:

 $ staging_dir/hostpkg/bin/lua -e 'print(0x80000000); print(0x80000000000); print(0x100000000)'

  -2147483648
  0
  0

On x86_64 target:

 $ lua -e 'print(0x80000000); print(0x80000000000); print(0x100000000)'

  -2147483648
  0
  0

On ath79 target:

 $ lua -e 'print(0x80000000); print(0x80000000000); print(0x100000000)'

  -2147483648
  8796093022208
  4294967296

It's caused by two issues fixed in this patch, first issue is caused by
unhadled strtoul overflow and second one is caused by the cast of
unsigned to signed Lua integer when parsing from hex literal.

Run tested on:

 * Zidoo Z9S with RTD1296 CPU (aarch64_cortex-a53)
 * qemu/x86_64
 * qemu/armvirt_64
 * ath79

Signed-off-by: Liangbin Lian <jjm2473@gmail.com>
[commit subject/message touches, fixed From to match SOB, fixed another
 unhandled case in luaO_str2i, host Lua, package bump]
Signed-off-by: Petr Štetiar <ynezz@true.cz>
2019-05-23 10:19:52 +02:00
..
adb adb: fix missing PKG_MIRROR_HASH 2019-03-21 00:57:54 +01:00
bsdiff
busybox
bzip2
ct-bugcheck
e2fsprogs
f2fs-tools
fbtest
fritz-tools fritz-tools: add support for IPQ40xx platform 2019-03-13 16:25:34 +01:00
fuse
jboot-tools
jsonfilter
lua lua: lnum: fix strtoul based number parsing 2019-05-23 10:19:52 +02:00
mdadm
mtd-utils
nvram
osafeloader
oseama
otrx
px5g
spidev_test utils/spidev_test: build package directly from Linux 2019-05-11 16:37:11 +02:00
ugps
usbmode
usbreset
usbutils usbutils: Update usb.ids to 0.321 2019-03-18 20:43:09 +01:00
util-linux
xfsprogs xfsprogs: Replace valloc with posix_memalign 2019-05-11 23:10:10 +02:00