Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: src/usr.bin/xlint/lint1



Module Name:    src
Committed By:   christos
Date:           Fri Aug 19 10:58:15 UTC 2016

Modified Files:
        src/usr.bin/xlint/lint1: cgram.y func.c

Log Message:
be less aggressive in clearing blocks to protect against:

int
main(int argc, char *argv[])
{
        int rv;

        if ((rv = ({ int _ret = 1; if (argc == 1) {} _ret; })) != 0)
            printf("%d\n", rv);
        return 0;
}


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 src/usr.bin/xlint/lint1/cgram.y
cvs rdiff -u -r1.25 -r1.26 src/usr.bin/xlint/lint1/func.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index