This commit is contained in:
Kurt Zeilenga 2004-06-30 22:28:15 +00:00
parent 3fb0648079
commit 93b72e36e8
2 changed files with 3 additions and 2 deletions

View file

@ -547,8 +547,9 @@ ber_put_seqorset( BerElement *ber )
if ( (next = (*sos)->sos_next) == NULL ) { if ( (next = (*sos)->sos_next) == NULL ) {
/* write the tag */ /* write the tag */
if ( (taglen = ber_put_tag( ber, (*sos)->sos_tag, 1 )) == -1 ) if ( (taglen = ber_put_tag( ber, (*sos)->sos_tag, 1 )) == -1 ) {
return( -1 ); return( -1 );
}
if ( ber->ber_options & LBER_USE_DER ) { if ( ber->ber_options & LBER_USE_DER ) {
/* Write the length in the minimum # of octets */ /* Write the length in the minimum # of octets */

View file

@ -221,7 +221,7 @@ ber_sockbuf_remove_io( Sockbuf *sb, Sockbuf_IO *sbio, int layer )
} }
*q = p->sbiod_next; *q = p->sbiod_next;
LBER_FREE( p ); LBER_FREE( p );
break; break;
} }
q = &p->sbiod_next; q = &p->sbiod_next;
} }