Subject: Re: Question regarding the array of size 0.
To: John Franklin , Peter Seebach <seebs@plethora.net>
From: Chuck McManis <cmcmanis@mcmanis.com>
List: tech-kern
Date: 03/20/2001 11:25:43
Which is an example of a buffer overrun exploit perhaps? As it has been mentioned there is "C" and there is "ANSI-C" and there is "GCC" and they are 
not the same language.
--Chuck

3/20/01 9:21:27 AM, John Franklin <franklin@elfie.org> wrote:
>struct zero_array {
>        int header;
>        int payload[0];
>};
...
>        foo.header=1;
>        foo.payload[0]=10;
>        foo.payload[1]=12;