probably wont fix

This commit is contained in:
ArsenArsen 2017-12-08 01:45:30 +01:00
parent 43f25c10ac
commit 07e55ed75d
No known key found for this signature in database
GPG Key ID: 683D2F43B0CA4BD2
1 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,8 @@ int main(int argc, char **argv) {
LOG_INFO("main", "finished hello");
char *tot = "";
char *tot = malloc(1);
*tot = 0;
for (int i = 1; i < argc; i++) {
char *arg = argv[i];
tot = join(tot, arg);