Tagged Questions
4
votes
2answers
304 views
Will any programs detect a buffer overflow within a C/C++ structure?
Consider the following program:
struct abc
{
int x[5];
int y[5];
};
int main()
{
struct abc test;
test.y[0] = 10;
printf("%d", test.x[5]);
}
(borrowed from
Is it legal to ...
4
votes
3answers
209 views
Bounds checking for Variable Length Arrays (VLA)?
Is there a way to check for buffer overflows in VLA's ? I used -fstack-protector-all -Wstack-protector but get these warnings:
warning: not protecting local variables: variable length buffer
Is ...