Fix typo in last commit

This commit is contained in:
Kurt Zeilenga 2001-11-04 17:50:16 +00:00
parent 9bd4308edf
commit f83cbc2c84

View File

@ -596,7 +596,7 @@ ber_scanf ( BerElement *ber,
(j + 2) * sizeof(char *) ); (j + 2) * sizeof(char *) );
if( *sss == NULL ) { if( *sss == NULL ) {
LBER_MEMFREE( save ); LBER_FREE( save );
rc = LBER_DEFAULT; rc = LBER_DEFAULT;
goto breakout; goto breakout;
} }
@ -622,7 +622,7 @@ ber_scanf ( BerElement *ber,
(j + 2) * sizeof(struct berval *) ); (j + 2) * sizeof(struct berval *) );
if( *bv == NULL ) { if( *bv == NULL ) {
LBER_MEMFREE( save ); LBER_FREE( save );
rc = LBER_DEFAULT; rc = LBER_DEFAULT;
goto breakout; goto breakout;
} }