From 83e77ec751ff76df29509820cecd6b3688312517 Mon Sep 17 00:00:00 2001 From: Nenad Rakocevic Date: Tue, 10 Aug 2021 01:42:27 +0200 Subject: [PATCH] FIX: additional fix for #4944. This fixes the "local variable sz2 used before being initialized!" compilation error. --- runtime/datatypes/string.reds | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/datatypes/string.reds b/runtime/datatypes/string.reds index 579e6aea44..036694fc7f 100644 --- a/runtime/datatypes/string.reds +++ b/runtime/datatypes/string.reds @@ -2092,6 +2092,7 @@ string: context [ step: step << (unit >> 1) pattern: null bs?: no + sz2: 0 ;-- Value argument processing --