From 0aa7254238a9ff6e5f0c16c6f0a3d7e90cd95102 Mon Sep 17 00:00:00 2001 From: Jason Hiser <jdh8d@virginia.edu> Date: Sat, 16 Feb 2019 17:41:11 -0500 Subject: [PATCH] fixed typo introduced in conversion that broke EVERYTHING --- unpin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpin.cpp b/unpin.cpp index e54822a..0b85209 100644 --- a/unpin.cpp +++ b/unpin.cpp @@ -48,7 +48,7 @@ bool Unpin_t::should_cfi_pin(Instruction_t* insn) // add command line option that: // 1) return false if !has_cfi_reloc(insn) // 2) return true if option is on. - return m_should_cfi_pin; + return *m_should_cfi_pin; } // CAN BE DELETED, left in just for stats? (Would speed up zipr step to delete) -- GitLab