From c8eac7595d094dd45402133497d645fb74e545f0 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 1 Oct 2025 22:23:27 -0700 Subject: [PATCH] Another bug fix. --- src/base/abci/abc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index d5361b3cb..159b0a0f7 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -36170,7 +36170,7 @@ int Abc_CommandAbc9Dfs( Abc_Frame_t * pAbc, int argc, char ** argv ) return 1; } if ( fChoices ) - pTemp = Gia_ManDupChoices( pAbc->pGia ); + pTemp = pAbc->pGia->pSibls ? Gia_ManDupChoices(pAbc->pGia) : Gia_ManDup(pAbc->pGia); else if ( fLeveled ) pTemp = Gia_ManDupLevelized( pAbc->pGia ); else if ( fNormal )