From cb80c7d188cba52144c2f3264674167a10af5215 Mon Sep 17 00:00:00 2001 From: olszomal Date: Mon, 8 May 2023 14:41:54 +0200 Subject: [PATCH] Initialize indata variable --- msi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msi.c b/msi.c index c8208c0..1d6219d 100644 --- a/msi.c +++ b/msi.c @@ -1672,7 +1672,7 @@ static int stream_handle(MSI_FILE *msi, MSI_DIRENT *dirent, u_char *p_msi, uint3 } } else { /* DIR_STREAM */ char buf[MAX_SECTOR_SIZE]; - char *indata; + char *indata = NULL; uint32_t inlen = GET_UINT32_LE(child->entry->size); if (inlen >= MAXREGSECT) { printf("Corrupted stream length 0x%08X\n", inlen);