stack.c (335B)
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 5 int 6 bof(char *str) 7 { 8 char buf[24]; 9 10 strcpy(buf, str); 11 return (1); 12 } 13 14 int 15 main(int argc, char *argv[]) 16 { 17 char str[517]; 18 FILE *badfile; 19 20 badfile = fopen("badfile", "r"); 21 fread(str, sizeof(char), 517, badfile); 22 bof(str); 23 printf("returned properly\n"); 24 25 return (1); 26 }