this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix possible overlapping strcpy()

+1 -1
+1 -1
src/dyld/mldr.c
··· 96 96 for (int i = 1; i < argc; i++) 97 97 { 98 98 size_t len = strlen(argv[i]); 99 - strcpy(p, argv[i]); 99 + memmove(p, argv[i], len+1); 100 100 101 101 argv[i-1] = p; 102 102 p += len+1;