this repo has no description
1
fork

Configure Feed

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

Fix path length calculation in dyld, fixes #90

authored by

Sergey Bugaev and committed by
GitHub
72ef7566 ba8988d2

+1 -1
+1 -1
src/dyld/dyld-multilib.c
··· 90 90 91 91 void junction(const char* target, int argc, char** argv) 92 92 { 93 - char* targetPath = malloc(strlen(target) + 3); 93 + char* targetPath = malloc(strlen(argv[0]) + 3); 94 94 95 95 strcpy(targetPath, argv[0]); 96 96 strcat(targetPath, target);