diff options
author | Michael Forney <mforney@mforney.org> | 2021-06-04 22:14:44 -0700 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-06-05 13:23:23 -0400 |
commit | 8d7460859b9f4a74b4d8c19295de4f8d21117f2b (patch) | |
tree | b43b2dcb6eeb86648e3277f03f6c09e628cc4113 /chat.c | |
parent | List windows with /window (diff) | |
download | catgirl-8d7460859b9f4a74b4d8c19295de4f8d21117f2b.tar.gz catgirl-8d7460859b9f4a74b4d8c19295de4f8d21117f2b.zip |
Avoid writing past the end of the status bar
When waddnstr is called with a string that would extend past the end of the window, the string is truncated, the cursor remains at the last column, and ERR is returned. If this error is ignored and the loop continues, the next call to waddnstr overwrites the character at this column, resulting in a slight visual artifact. When the window is too small to fit the full status line, it is effectively truncated by one space on the right, since the string shown for each channel begins with a space. Additionally, if the last window is the current window, the space is shown with a colored background. To fix this, when waddnstr returns ERR, exit the loop in styleAdd() early return -1 to propogate this error down to the caller.
Diffstat (limited to 'chat.c')
0 files changed, 0 insertions, 0 deletions