fortify-headers

standalone fortify-source implementation
git clone git://git.2f30.org/fortify-headers
Log | Files | Refs | README | LICENSE

test_poll_static.c (210B)


      1 #include "common.h"
      2 
      3 #include <poll.h>
      4 
      5 int main(int argc, char** argv) {
      6   struct pollfd buffer[12] = {0};
      7 
      8   CHK_FAIL_START
      9   poll(buffer, 14, 0);
     10   CHK_FAIL_END
     11 
     12   puts((const char*)buffer);
     13   return ret;
     14 }