mirror of
https://github.com/tmux/tmux.git
synced 2024-12-04 19:58:48 +00:00
Allow attributes to have only two parameters, from Tim Culverhouse.
This commit is contained in:
parent
b777780720
commit
a5545dbc9f
@ -137,7 +137,9 @@ sixel_parse_attributes(struct sixel_image *si, const char *cp, const char *end)
|
||||
if (endptr == last || *endptr != ';')
|
||||
return (last);
|
||||
strtoul(endptr + 1, &endptr, 10);
|
||||
if (endptr == last || *endptr != ';') {
|
||||
if (endptr == last)
|
||||
return (last);
|
||||
if (*endptr != ';') {
|
||||
log_debug("%s: missing ;", __func__);
|
||||
return (NULL);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user