mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
bug fixes
This commit is contained in:
parent
4c0c155922
commit
bc5789665a
37 changed files with 949 additions and 137 deletions
|
@ -180,11 +180,8 @@ walk_kbnode( KBNODE root, KBNODE *context, int all )
|
|||
return root;
|
||||
}
|
||||
|
||||
n = *context;
|
||||
if( n->next ) {
|
||||
n = n->next;
|
||||
*context = n;
|
||||
}
|
||||
n = (*context)->next;
|
||||
*context = n;
|
||||
} while( !all && n && (n->private_flag & 1) );
|
||||
|
||||
return n;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue