From 4a7222ce81a7c13d31bdac6b8f6ee6d266ca4db9 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 19 Oct 2013 12:25:39 +0200 Subject: [PATCH] Avoid compiler warning about possible use of uninitialized values --- src/KaxBlock.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/KaxBlock.cpp b/src/KaxBlock.cpp index e111038..b98983b 100644 --- a/src/KaxBlock.cpp +++ b/src/KaxBlock.cpp @@ -201,6 +201,7 @@ filepos_t KaxInternalBlock::UpdateSize(bool /* bSaveDefault */, bool /* bForceRe } break; default: + i = 0; assert(0); } // Size of the last frame (not in lace) -- 2.40.0