From d991988fd809d1bc031d35e1cc2efaa9ec5a4a2e Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Thu, 30 Apr 2026 21:11:42 -0400 Subject: [PATCH] core: blob: Always terminate blob next ptr Signed-off-by: Chloe M. --- core/blob_subr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/blob_subr.c b/core/blob_subr.c index ef1c2a5..305f407 100644 --- a/core/blob_subr.c +++ b/core/blob_subr.c @@ -14,6 +14,7 @@ blob_allocate(struct data_stream *stmp) bp = xmalloc(sizeof(*bp)); bp->length = (stmp != NULL) ? stmp->length : 0; + bp->next = NULL; if (stmp == NULL) { bp->data = NULL; } else {