aboutsummaryrefslogtreecommitdiff
path: root/cbs.h
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-09 11:21:39 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-09 11:21:39 +0200
commitca812456b590d349f4c15a972ecc444d5b27c5ec (patch)
tree655b30004a6309192b0355213fee1f480fb7f09c /cbs.h
parentfb29f653b0d3868a8dde08ebf4689acd314eaa4d (diff)
Remember to NULL-terminate in strszero()
Diffstat (limited to 'cbs.h')
-rw-r--r--cbs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cbs.h b/cbs.h
index a6cfb73..4018b64 100644
--- a/cbs.h
+++ b/cbs.h
@@ -188,6 +188,8 @@ void
strszero(struct strs *xs)
{
xs->len = 0;
+ if (xs->cap > 0)
+ xs->buf[0] = NULL;
}
void