From 2e56f44c66739f5deeaddce31cce2c081bd21943 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sat, 22 Jul 2017 11:41:17 +0700 Subject: Compiler warnings. --- src/base/io/ioReadBblif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/base/io') diff --git a/src/base/io/ioReadBblif.c b/src/base/io/ioReadBblif.c index 2de62695..945b6259 100644 --- a/src/base/io/ioReadBblif.c +++ b/src/base/io/ioReadBblif.c @@ -55,7 +55,7 @@ ABC_NAMESPACE_IMPL_START Abc_Ntk_t * Bbl_ManToAbc( Bbl_Man_t * p ) { Abc_Ntk_t * pNtk; - Abc_Obj_t * pObjNew; + Abc_Obj_t * pObjNew = NULL; Bbl_Obj_t * pObj, * pFanin; Vec_Ptr_t * vCopy; // start the network @@ -160,7 +160,7 @@ Abc_Ntk_t * Bbl_ManToAig( Bbl_Man_t * p ) extern Abc_Obj_t * Dec_GraphToAig( Abc_Ntk_t * pNtk, Dec_Graph_t * pFForm, Vec_Ptr_t * vFaninAigs ); int fVerbose = 0; Abc_Ntk_t * pNtk; - Abc_Obj_t * pObjNew; + Abc_Obj_t * pObjNew = NULL; Bbl_Obj_t * pObj, * pFanin; Vec_Ptr_t * vCopy, * vNodes, * vFaninAigs; Dec_Graph_t ** pFForms; -- cgit v1.2.3