summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pls.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pls.c b/pls.c
index 01df654..d768b8f 100644
--- a/pls.c
+++ b/pls.c
@@ -75,6 +75,7 @@ int vaswprintf(wchar_t **ret, const wchar_t *format, va_list ap) {
 
 		va_list _ap;
 		va_copy(_ap, ap);
+		errno = EOVERFLOW; // vswprintf may not set errno.
 		int len = vswprintf(*ret, 1 + cap, format, _ap);
 		va_end(_ap);
 
d up and down arrows to scrollJune McEnroe 2019-02-22Remove topic TODOJune McEnroe 2019-02-22Add /znc commandJune McEnroe 2019-02-22Update status line after scrolling and term eventsJune McEnroe 2019-02-22Reorganize input.cJune McEnroe 2019-02-22Fix name of <raw> window in man pageJune McEnroe 2019-02-22Rename global tags with angle bracketsJune McEnroe 2019-02-22Show status window while connectingJune McEnroe 2019-02-22Reorganize UI code for the umpteenth timeJune McEnroe 2019-02-21Replace "view" with "window"June McEnroe 2019-02-21Remove ROT13June McEnroe 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe