[Bug 12926] embedded "wc" command has overflow issues

bugzilla at busybox.net bugzilla at busybox.net
Mon May 25 06:28:34 UTC 2020


https://bugs.busybox.net/show_bug.cgi?id=12926

--- Comment #1 from Benjamin Brecht <benjamin.bauer at kps.com> ---
Code from: coreutils/wc.c

#if ENABLE_FEATURE_WC_LARGE
# define COUNT_T unsigned long long
# define COUNT_FMT "llu"
#else
# define COUNT_T unsigned
# define COUNT_FMT "u"
#endif

Can you enable this flag, so that the bigger variable type is used for
counting?

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the busybox-cvs mailing list