From 7b64e660c628a8ef12518461dd550ab57294425c Mon Sep 17 00:00:00 2001 From: Bhargava Shastry Date: Tue, 6 Apr 2021 22:45:37 +0200 Subject: [PATCH] Bug fix --- test/tools/ossfuzz/ValueGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tools/ossfuzz/ValueGenerator.cpp b/test/tools/ossfuzz/ValueGenerator.cpp index 61cab8bdc..a03208205 100644 --- a/test/tools/ossfuzz/ValueGenerator.cpp +++ b/test/tools/ossfuzz/ValueGenerator.cpp @@ -187,7 +187,7 @@ void ValueGenerator::initialiseType(TypeInfo& _t) _t.value += "0x" + fixedBytes(static_cast(_t.fixedByteWidth), m_rand(), true); break; case Type::Address: - _t.value = addressLiteral(); + _t.value += addressLiteral(); break; case Type::Function: _t.value += "0x" +