Commit Graph

2969 Commits (6c8a0d1bb74ecd21f49bc3654cf59264d3c343e1)
 

Author SHA1 Message Date
tstack 49dcccbaae Update tailer 1 year ago
Tim Stack e6f5a95a80 [release] add zstd to alpine and some other release tweaks 1 year ago
Tim Stack 5d5fb67d8c [release] tweak curl config again 1 year ago
Tim Stack 4a00433bec [release] skip brew curl 1 year ago
tstack ab12671308 Update tailer 1 year ago
Tim Stack 7713eb8242 [release] get prefix from brew 1 year ago
tstack 7b2ec36315 Update tailer 1 year ago
Tim Stack 06f259a03f [release] fix configure for macos 1 year ago
Tim Stack cc6b953595 [release] upload config.log for debugging 1 year ago
Tim Stack 2d5835897d [release] add more packages 1 year ago
Tim Stack 34900a94c4 [release] try to build macos binary 1 year ago
Tim Stack 93c85b0e8e [release] fix upload_url var name 1 year ago
Tim Stack d69f0d80f9 [release] fix pkg script 1 year ago
Tim Stack 9a20df651c [release] fix bins env 1 year ago
Tim Stack 54bcd6ccd7 [release] attempt to reuse bins workflow 1 year ago
Tim Stack 607fd96a38 [release] fix filenames 1 year ago
Tim Stack ac848df0cf [release] fix copy pasta 1 year ago
Tim Stack 7d24eb6144 [dist] make dist should work without doing a full build 1 year ago
Tim Stack f4e28f5564 [release] add packages 1 year ago
Tim Stack e4a7fa925b [release] try to make releases through github actions 1 year ago
Tim Stack 7ccb467695 [build] fix some more warnings 1 year ago
Tim Stack 91730b7c3c [cleanup] fix some warnings 1 year ago
Tim Stack 193fd7d8cc [fmt] bump version to 10.0.0 1 year ago
Tim Stack 51841d40b8 [view] add selection column to lnav_views
related to #1149
1 year ago
Tim Stack a8ef2c54d6 [build] fix artifact path 1 year ago
Tim Stack f096824034 [build] general actions improvements 1 year ago
Tim Stack 5d63be60dc [build] do checkout 1 year ago
Tim Stack 3744923604 [build] diff container approach 1 year ago
Tim Stack aa8f152c5b [build] call entrypoint 1 year ago
Tim Stack 5e8800872b [build] try using prebuilt image 1 year ago
Tim Stack fc67f704cc [build] fix autogen path 1 year ago
Tim Stack 231a76c14b [build] fix order of autogen 1 year ago
Tim Stack a403788d90 [build] fix some typos 1 year ago
Tim Stack 1cc35fd6be [build] move into extract 1 year ago
Tim Stack b529ecf979 [build] move to dockerfile 1 year ago
Tim Stack b357efea7a [build] fix ncurses url 1 year ago
Tim Stack 7a08a54f59 [build] install deps 1 year ago
Tim Stack 4da325882b [build] sh instead of bash? 1 year ago
Tim Stack 2771fe0b52 [build] sigh, no hash bang 1 year ago
Tim Stack 17d5bde24a [build] set x bit 1 year ago
Tim Stack 2c478c921f [build] downgrade alpine version 1 year ago
Tim Stack 156eb1d779 [build] more stuff 1 year ago
Tim Stack 1d18566b8d [build] try to build musl using an action 1 year ago
Tim Stack 9f1cf33120 [release] bump deps 1 year ago
Tim Stack dd21bdfd82 [text_filter] scrub ansi when testing a filter
Related to #1163
1 year ago
Tim Stack f98f1e52c9
Merge pull request #1160 from he32/shift-overflow-fix
ArenaAlloc/arenaallocimpl.h: avoid shift overflow on 32-bit hosts.
1 year ago
Tim Stack 2d870dece8
Merge pull request #1159 from he32/isdigit-fix
strnatcmp.c: ensure correct value range for isdigit() argument.
1 year ago
Havard Eidnes 0b51752974 ArenaAlloc/arenaallocimpl.h: avoid shift overflow on 32-bit hosts.
Use the constants defined by <stdint.h> to avoid right-shift by 32
on a 32-bit host by comparing SIZE_MAX to UINT32_MAX, since `value`
is a size_t.

Found by building on NetBSD/macppc with -Wshift-count-overflow
(which is default on in the pkgsrc setup, which this is from).

./third-party/ArenaAlloc/arenaallocimpl.h:111:22: warning: right shift count >=
width of type [-Wshift-count-overflow]
  111 |       value |= value >> 32;
      |                ~~~~~~^~~~~
1 year ago
Havard Eidnes f5daea2273 strnatcmp.c: ensure correct value range for isdigit() argument.
The valid values to pass to `isdigit()` is the values represented
by `unsigned char` and the value of EOF (usually -1).  Other values
such as the other negative `signed char` values may invoke undefined
behaviour.

Fix this by casting the argument to `isdigit()` to `unsigned char`.

Found by building on NetBSD/macppc with -Wchar-subscripts turned on.
1 year ago
Tim Stack 34f026e444 [tests] unset NO_COLOR since it can affect the tests where color is captured in the output
Related to #1154
1 year ago