Skip to content

Commit 3d9009e

Browse files
committed
Fix unitialized variable warning
1 parent 8fab5e6 commit 3d9009e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dsql/AggNodes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1647,8 +1647,8 @@ void BinAggNode::aggInit(thread_db* tdbb, Request* request) const
16471647
if (nodFlags & FLAG_INT128)
16481648
{
16491649
Firebird::Int128 i128;
1650+
i128.set(initValue, 0);
16501651
impure->make_decimal_fixed(i128, 0);
1651-
impure->vlu_misc.vlu_int128 = initValue;
16521652
}
16531653
else
16541654
impure->make_int64(initValue);

0 commit comments

Comments
 (0)