fortify-headers

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

test_mbstowcs_dynamic.c (254B)


      1 #include "common.h"
      2 
      3 #include <wchar.h>
      4 
      5 int main(int argc, char** argv) {
      6   wchar_t buffer[4] = {0};
      7 
      8   mbstowcs(buffer, "AB", 2);
      9 
     10   CHK_FAIL_START
     11   mbstowcs(buffer, "ABCDEFGHIJ", argc + 15);
     12   CHK_FAIL_END
     13 
     14   printf("%ls\n", buffer);
     15   return ret;
     16 }