Skip to content

Commit

Permalink
clear internally accumulated RC() macro entries if table enumeration …
Browse files Browse the repository at this point in the history
…of a table is requested
  • Loading branch information
wraetz committed Sep 8, 2015
1 parent bf9b4fe commit 85cab2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/vdb-dump/vdb-dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,8 @@ static rc_t vdm_dump_table( const p_dump_context ctx, const VDBManager *my_manag
else if ( ctx->table_enum_requested )
{
KOutMsg( "cannot enum tables of a table-object\n" );
rc = RC ( rcApp, rcArgv, rcAccessing, rcParam, rcInvalid );
vdm_clear_recorded_errors();
rc = 0;
}
else if ( enum_col_request( ctx ) )
{
Expand Down

0 comments on commit 85cab2c

Please sign in to comment.