Initialize creds to 0 (No real deficiency exsisted beforehand)

This commit is contained in:
Emil 2023-08-02 14:47:32 -06:00
parent a1ac332032
commit fdf2597b77
2 changed files with 3 additions and 2 deletions

View File

@ -1,2 +1,3 @@
main:
# note that this does not properly handle options
probotic:
./build.sh

View File

@ -38,7 +38,7 @@ main(int argc,
if (argc != 4)
{ ERR(1, "server port channel"); }
/* Arguments */
creds_t credentials;
creds_t credentials = {0};
char const * server = argv[1];
int const port = atoi(argv[2]);
channel = argv[3];