probably wont fix
This commit is contained in:
parent
43f25c10ac
commit
07e55ed75d
1 changed files with 2 additions and 1 deletions
3
rsudo.c
3
rsudo.c
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue