Backport from xs.

This commit is contained in:
default 2023-04-19 22:53:07 +02:00
parent 3ccf4e3759
commit d55db28390
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ xs_str *xs_hex_enc(const xs_val *data, int size)
p = s = xs_realloc(NULL, _xs_blk_size(size * 2 + 1));
for (n = 0; n < size; n++) {
sprintf(p, "%02x", (unsigned char)data[n]);
snprintf(p, 3, "%02x", (unsigned char)data[n]);
p += 2;
}

View File

@ -40,7 +40,7 @@ static xs_str *_xs_json_dumps_str(xs_str *s, const char *data)
if (c < 32) {
char tmp[10];
sprintf(tmp, "\\u%04x", (unsigned int) c);
snprintf(tmp, sizeof(tmp), "\\u%04x", (unsigned int) c);
s = xs_str_cat(s, tmp);
}
else

View File

@ -1 +1 @@
/* 69d6e64d31491688ba4411e71c55e6c25482b17e */
/* ff134685f4cb4096c6fce0a2a946be2663ff196e */