Skip to content
Snippets Groups Projects
Commit e60d22e3 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Quick fix for NULL sos

parent 1d4e2342
No related branches found
No related tags found
No related merge requests found
......@@ -504,6 +504,8 @@ ber_put_seqorset( BerElement *ber )
assert( ber != NULL );
assert( LBER_VALID( ber ) );
if( *sos == NULL ) return -1;
/*
* If this is the toplevel sequence or set, we need to actually
* write the stuff out. Otherwise, it's already been put in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment