Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'stack'

955413 - stack: stack
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define STACKSIZE 20
  4.  
  5. typedef char info_t;
  6. typedef struct s
  7. {
  8. info_t S[STACKSIZE];
  9.  
911955 - VLA: stack overflow
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <alloca.h>
  4.  
  5. void foo_alloca(size_t s);
  6. void foo_vla(size_t s);
  7.  
  8. int
  9.  
911941 - VLA: stack overflow
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <alloca.h>
  4.  
  5. void foo_alloca(size_t s);
  6. void foo_vla(size_t s);
  7.  
  8. int
  9.  
775693 - cron.log: log error cron stack exception corrupted
  1. Exception: STATUS_ACCESS_VIOLATION at eip=610EEBB9
  2. eax=00000001 ebx=00000068 ecx=FFFFFFFF edx=00000000 esi=00000000 edi=00000064
  3. ebp=0022C6F8 esp=0022C6E0 program=C:\cygwin\usr\sbin\cron.exe, pid 4452, thread
  4. main
  5. cs=001B ds=0023 es=0023 fs=003B gs=0000 ss=0023
  6. Stack trace:
  7. Frame     Function  Args
  8. 0022C6F8  610EEBB9  (00000068, 00000000, 00000000, 00000000)
  9.  
worth-right