From f58969ddf1d22882bff102ef597c6f129255894a Mon Sep 17 00:00:00 2001
From: Christoph Egger <Christoph.Egger@fau.de>
Date: Tue, 10 Mar 2015 12:36:48 +0100
Subject: [PATCH] Properly initialize end address in BasicBlock

having random data show up there when the block isn't finished yet is
suboptimal
---
 src/core/BasicBlock.hxx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/core/BasicBlock.hxx b/src/core/BasicBlock.hxx
index bec0da3..0df07b2 100644
--- a/src/core/BasicBlock.hxx
+++ b/src/core/BasicBlock.hxx
@@ -54,6 +54,7 @@ public:
 private:
 	BasicBlock(uint64_t start_address, InformationManager* manager)
 		: start_address(start_address)
+		, end_address(0)
 		, manager(manager) {
 		next_blocks[0] = 0;
 		next_blocks[1] = 0;
-- 
2.39.5