整数オーバーフロー
とりあえずサンプルを作る #include #include #include int main(int argc, char **argv) { char *p; int len = atoi(argv[1]); if (len malloc(len); strcpy(p, argv[2]); } else printf("the number which you inputed is too big\n"); return 0; } それで…
とりあえずサンプルを作る #include #include #include int main(int argc, char **argv) { char *p; int len = atoi(argv[1]); if (len malloc(len); strcpy(p, argv[2]); } else printf("the number which you inputed is too big\n"); return 0; } それで…