From bf75193a3f0ab1fa01e579ea59df75419db26b61 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 10 Jan 2021 23:09:43 +0100 Subject: Fix potential blank node ID truncation --- NEWS | 6 ++++++ src/sratom.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 16698ee..b5e7246 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +sratom (0.6.9) unstable; + + * Fix potential blank node ID truncation + + -- David Robillard Sun, 10 Jan 2021 22:10:23 +0000 + sratom (0.6.8) stable; * Fix potential null pointer dereference diff --git a/src/sratom.c b/src/sratom.c index df74338..b0a0aa4 100644 --- a/src/sratom.c +++ b/src/sratom.c @@ -140,7 +140,7 @@ sratom_set_object_mode(Sratom* sratom, SratomObjectMode object_mode) static void gensym(SerdNode* out, char c, unsigned num) { - out->n_bytes = out->n_chars = snprintf((char*)out->buf, 10, "%c%u", c, num); + out->n_bytes = out->n_chars = snprintf((char*)out->buf, 12, "%c%u", c, num); } static void -- cgit v1.2.1