fortify-headers

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

test_memset_null.c (147B)


      1 #include "common.h"
      2 
      3 #include <string.h>
      4 
      5 int main(int argc, char** argv) {
      6   CHK_FAIL_START
      7   memset(NULL, 0, 0);
      8   CHK_FAIL_END
      9 
     10   return ret;
     11 }