From 845a824d62d475b24a955496cd80e92b6ddb2fde Mon Sep 17 00:00:00 2001 From: Matt Mascarenhas Date: Mon, 14 May 2018 15:55:49 +0100 Subject: [PATCH] cinera.c: Fix fix from 0.5.49 --- cinera/cinera.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cinera/cinera.c b/cinera/cinera.c index 4ba2679..c61c878 100644 --- a/cinera/cinera.c +++ b/cinera/cinera.c @@ -16,7 +16,7 @@ typedef struct version CINERA_APP_VERSION = { .Major = 0, .Minor = 5, - .Patch = 49 + .Patch = 50 }; // TODO(matt): Copy in the DB 3 stuff from cinera_working.c @@ -5503,7 +5503,7 @@ IndexToBuffer(index *Index, buffers *CollationBuffers) // NOTE(matt): This guy m } char Number[16]; index_metadata *This; - char Text[ProjectUnit ? StringLength(ProjectUnit) : 0 + sizeof(Number) + sizeof(This->Title) + 3]; + char Text[(ProjectUnit ? StringLength(ProjectUnit) : 0) + sizeof(Number) + sizeof(This->Title) + 3]; int EntryLength = StringLength(PlayerURL.Location) + sizeof(Text) + 82; CollationBuffers->Index.Size = StringLength(queryContainer) + (Index->Header.EntryCount * EntryLength) + StringLength(Script);