Skip to content
Snippets Groups Projects
Commit 461d84fb authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

fixed uninit variable in irdb interface

Former-commit-id: 43270910227f853181efd0394ba1803c7840c893
parent f9a91b7e
Branches
Tags
No related merge requests found
......@@ -24,7 +24,7 @@ class Relocation_t : public BaseObj_t
public:
// create new item.
Relocation_t() : BaseObj_t(NULL), offset(0), wrt_obj(NULL) {} // new reloc w/no data
Relocation_t() : BaseObj_t(NULL), offset(0), wrt_obj(NULL), addend(0) {} // new reloc w/no data
// a reloc read from the DB
Relocation_t(db_id_t reloc_id, int _offset, std::string _type, BaseObj_t* p_wrt_obj=NULL, int32_t p_addend=0) :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment