This commit is contained in:
Lev Walkin 2004-07-21 04:15:24 +00:00
parent e877c82f1c
commit c698eb8839
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
* Fixed parser: memory leak in free_struct code for SET OF/SEQUENCE OF. * Fixed parser: memory leak in free_struct code for SET OF/SEQUENCE OF.
(Severity: high, Security impact: medium) (Severity: high, Security impact: medium)
* Fixed parser: invalid memory reference in CHECK. * Fixed parser: invalid memory reference in code constructing tags.
(Test case 48) (Severity: high, Security impact: medium) (Test case 48) (Severity: high, Security impact: medium)
When encoding data for certain ASN.1 specifications containing When encoding data for certain ASN.1 specifications containing
explicit tags, the tag is always written incorrectly due to explicit tags, the tag is always written incorrectly due to

View File

@ -33,7 +33,7 @@ set +x
# Create a Makefile for the project. # Create a Makefile for the project.
cat > Makefile <<EOM cat > Makefile <<EOM
CFLAGS=-I. -Wall -g ${CFLAGS} -DEMIT_ASN_DEBUG CFLAGS=-I. -W -Wall -Werror -g ${CFLAGS} -DEMIT_ASN_DEBUG
SRCS=`echo *.c` SRCS=`echo *.c`
OBJS=\${SRCS:.c=.o} OBJS=\${SRCS:.c=.o}
check-executable: \${OBJS} check-executable: \${OBJS}