summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authordweller <dweller@cabin.digital>2025-04-04 17:46:48 +0300
committerdweller <dweller@cabin.digital>2025-04-04 17:46:48 +0300
commit6f1ab78793b3e8f299ddbdb867202a0bedd97688 (patch)
treeb77b32a3f2a035e7fbe8f2ff8dfc574dd8a8c4fe /sources
parent0533b005901b976e3e6d11d7ec5078118bbe5a2f (diff)
fix iui_label buffer alloc; who needs va_copy anyways C89 FTWHEADmaster
Diffstat (limited to '')
-rw-r--r--sources/iui.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/sources/iui.c b/sources/iui.c
index 6f82ad1..4e656c6 100644
--- a/sources/iui.c
+++ b/sources/iui.c
@@ -148,10 +148,16 @@ void iui_label(iui* ui, u16 x, u16 y, int w, int h, char* fmt, ...)
va_list ap = {0};
xctx* x11 = (xctx*)ui->usr;
- buf = ar_push(ui->ar, 512);
va_start(ap, fmt);
- len = vsnprintf(buf, 511, fmt, ap);
+ len = vsnprintf(NULL, 0, fmt, ap);
+ va_end(ap);
+
+ if(len) len++;
+ buf = ar_push(ui->ar, len);
+
+ va_start(ap, fmt);
+ len = vsnprintf(buf, len, fmt, ap);
va_end(ap);
{