Initialize variables in invitation.c
This commit is contained in:
parent
8fb52e05f3
commit
84d34f4f35
1 changed files with 5 additions and 5 deletions
|
@ -310,7 +310,7 @@ int cmd_invite(int argc, char *argv[]) {
|
||||||
fprintf(stderr, "Error while reading directory %s: %s\n", filename, strerror(errno));
|
fprintf(stderr, "Error while reading directory %s: %s\n", filename, strerror(errno));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
ecdsa_t *key;
|
ecdsa_t *key;
|
||||||
snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "ed25519_key.priv", confbase);
|
snprintf(filename, sizeof filename, "%s" SLASH "invitations" SLASH "ed25519_key.priv", confbase);
|
||||||
|
|
||||||
|
@ -573,7 +573,7 @@ make_names:
|
||||||
snprintf(temp_netname, sizeof temp_netname, "join_%x", rand());
|
snprintf(temp_netname, sizeof temp_netname, "join_%x", rand());
|
||||||
netname = temp_netname;
|
netname = temp_netname;
|
||||||
goto make_names;
|
goto make_names;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mkdir(confbase, 0777) && errno != EEXIST) {
|
if(mkdir(confbase, 0777) && errno != EEXIST) {
|
||||||
fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
|
fprintf(stderr, "Could not create directory %s: %s\n", confbase, strerror(errno));
|
||||||
|
@ -605,7 +605,7 @@ make_names:
|
||||||
// Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
|
// Filter first chunk on approved keywords, split between tinc.conf and hosts/Name
|
||||||
// Other chunks go unfiltered to their respective host config files
|
// Other chunks go unfiltered to their respective host config files
|
||||||
const char *p = data;
|
const char *p = data;
|
||||||
char *l, *value;
|
char *l, *value = NULL;
|
||||||
|
|
||||||
while((l = get_line(&p))) {
|
while((l = get_line(&p))) {
|
||||||
// Ignore comments
|
// Ignore comments
|
||||||
|
@ -971,7 +971,7 @@ next:
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
|
ecdsa_t *hiskey = ecdsa_set_base64_public_key(fingerprint);
|
||||||
if(!hiskey)
|
if(!hiskey)
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -1001,7 +1001,7 @@ next:
|
||||||
p += done;
|
p += done;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sptps_stop(&sptps);
|
sptps_stop(&sptps);
|
||||||
ecdsa_free(hiskey);
|
ecdsa_free(hiskey);
|
||||||
ecdsa_free(key);
|
ecdsa_free(key);
|
||||||
|
|
Loading…
Reference in a new issue