fortify-headers

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

test_memmove_null_src.c (219B)


      1 #include "common.h"
      2 
      3 #include <string.h>
      4 
      5 int main(int argc, char** argv) {
      6 #ifndef __GNUC__
      7   char buffer[12] = {0};
      8 
      9   CHK_FAIL_START
     10   memmove(NULL, buffer, 0);
     11   CHK_FAIL_END
     12 
     13   puts(buffer);
     14 #endif
     15   return ret;
     16 }