Follow up fix for 126462 - Occurences of uninitialized variables being

used before being set (in directory/c-sdk).
	Fix debug build.


git-svn-id: svn://10.0.0.236/trunk@140160 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcs%netscape.com 2003-03-24 20:44:58 +00:00
parent eeb894ca8c
commit 74319d5e50
2 changed files with 4 additions and 1 deletions

View File

@ -95,3 +95,6 @@ $(OBJDEST):
install:: $(LIBLBER)
$(INSTALL) -m 444 $(LIBLBER) $(INSTALLDIR)/lib
# test executables
etest: $(LIBLBER)

View File

@ -734,7 +734,7 @@ ber_get_next( Sockbuf *sb, unsigned long *len, BerElement *ber )
if ( lber_debug ) {
char msg[80];
sprintf( msg, "ber_get_next: tag 0x%lx len %ld contents:\n",
tag, ber->ber_len );
ber->ber_tag_contents[0], ber->ber_len );
ber_err_print( msg );
if ( lber_debug > 1 )
ber_dump( ber, 1 );