Skip to content
Snippets Groups Projects
Commit b534c3f0 authored by an7s's avatar an7s
Browse files

Fixed uninitialized member variable (m_ibt_address)

This was messing up the control flow graph



Former-commit-id: 7a6c7d0c2104d2e46a1d9841caf533e74d33c1f2
parent a9156280
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
wahoo::Instruction::Instruction()
{
m_address = 0;
m_ibt_address = 0;
m_size = -1;
m_function = NULL;
m_asm = "";
......@@ -21,6 +22,7 @@ wahoo::Instruction::Instruction()
wahoo::Instruction::Instruction(app_iaddr_t p_address, int p_size, Function* p_func)
{
m_address = p_address;
m_ibt_address = 0;
m_size = p_size;
m_function = p_func;
m_isVisited = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment