Tweak previous - find end of style correctly.

pull/3247/head
nicm 2022-06-27 09:16:54 +00:00
parent 786cff8db9
commit b22edcf3a5
1 changed files with 1 additions and 1 deletions

View File

@ -4714,6 +4714,7 @@ format_expand1(struct format_expand_state *es, const char *fmt)
n++;
}
if (*ptr == '[') {
style_end = format_skip(fmt - 2, "]");
format_log(es, "found #*%zu[", n);
while (len - off < n + 2) {
buf = xreallocarray(buf, 2, len);
@ -4722,7 +4723,6 @@ format_expand1(struct format_expand_state *es, const char *fmt)
memcpy(buf + off, fmt - 2, n + 1);
off += n + 1;
fmt = ptr + 1;
style_end = format_skip(fmt - 2, "]");
continue;
}
/* FALLTHROUGH */