mirror of
https://github.com/tmux/tmux.git
synced 2025-12-13 09:06:03 +00:00
Do not read over buffer if format is a single #, and do not loop forever
if UTF-8 is unfinished in a format. Reported by Giorgi Kobakhia im GitHub issue 4735.
This commit is contained in:
@@ -1104,8 +1104,6 @@ format_width(const char *expanded)
|
||||
more = utf8_append(&ud, *cp);
|
||||
if (more == UTF8_DONE)
|
||||
width += ud.width;
|
||||
else
|
||||
cp -= ud.have;
|
||||
} else if (*cp > 0x1f && *cp < 0x7f) {
|
||||
width++;
|
||||
cp++;
|
||||
|
||||
Reference in New Issue
Block a user