mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: Extend free_packet to handle a packet parser context.
* g10/packet.h (struct parse_packet_ctx_s): Add fields LAST_PKT and FREE_LAST_PKT. (init_parse_packet): Clear them. (deinit_parse_packet): New macro. Change all users if init_parse_packet to also call this macro. * g10/free-packet.c (free_packet): Add arg PARSECTX and handle shallow packet copies in the context. Change all callers. * g10/parse-packet.c (parse): Store certain packets in the parse context. -- Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
ba57f8302a
commit
afa8680908
12 changed files with 124 additions and 53 deletions
|
@ -117,8 +117,8 @@ release_kbnode( KBNODE n )
|
|||
while( n ) {
|
||||
n2 = n->next;
|
||||
if( !is_cloned_kbnode(n) ) {
|
||||
free_packet( n->pkt );
|
||||
xfree( n->pkt );
|
||||
free_packet (n->pkt, NULL);
|
||||
xfree( n->pkt );
|
||||
}
|
||||
free_node( n );
|
||||
n = n2;
|
||||
|
@ -288,7 +288,7 @@ commit_kbnode( KBNODE *root )
|
|||
else
|
||||
nl->next = n->next;
|
||||
if( !is_cloned_kbnode(n) ) {
|
||||
free_packet( n->pkt );
|
||||
free_packet (n->pkt, NULL);
|
||||
xfree( n->pkt );
|
||||
}
|
||||
free_node( n );
|
||||
|
@ -312,7 +312,7 @@ remove_kbnode( KBNODE *root, KBNODE node )
|
|||
else
|
||||
nl->next = n->next;
|
||||
if( !is_cloned_kbnode(n) ) {
|
||||
free_packet( n->pkt );
|
||||
free_packet (n->pkt, NULL);
|
||||
xfree( n->pkt );
|
||||
}
|
||||
free_node( n );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue