Follow up fix for 126462 - Occurences of uninitialized variables being

used before being set (in directory/c-sdk).
	Fix debug build.
This commit is contained in:
mcs%netscape.com 2003-03-24 20:44:58 +00:00
Родитель 6f0166d1ae
Коммит ec0f469f37
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

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

Просмотреть файл

@ -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 );