Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-19 | sfeed_curses: code-style: remove variable name in definition | Hiltjo Posthuma | |
2022-01-19 | sfeed_curses: fix a pedantic sign comparison | Hiltjo Posthuma | |
2022-01-19 | fix inconsistencies in comments | Hiltjo Posthuma | |
2022-01-19 | sfeed_curses: consistency: mousereport: use off_t like the other functions | Hiltjo Posthuma | |
2022-01-19 | sfeed_curses: line editor: add more clear comments of signal handling | Hiltjo Posthuma | |
2022-01-14 | sfeed_curses: pedantic fix for UB with an empty URL file | Hiltjo Posthuma | |
When a new URL file is used with no URL entries then NULL is passed to qsort() and bsearch(). This is reported by clang UBsan as undefined behaviour (debatable), but no issue in practise with many implementations. Fix it anyway. To reproduce with clang UBsan: Compile with clang or gcc with CFLAGS and LDFLAGS -fsanitize=undefined touch /tmp/urls # new file which should be empty. SFEED_URL_FILE=/tmp/urls sfeed_curses 2>/tmp/log ^D q cat /tmp/log | |||
2021-11-26 | sfeed_curses: reuse some functions in util | Hiltjo Posthuma | |
2021-11-26 | import sfeed_curses | Hiltjo Posthuma | |
Import sfeed_curses into sfeed. The files are based of the commit 8e151ce48b503ad0ff0e24cb1be3bc93d6fbd895 |