1
1

fix invalid sizeof on pointer instead of type (#556)

This is only a coherency fix since sizeof(char*) >> sizeof(char)
There should be no functional nor stability impact whatsoever
Этот коммит содержится в:
Gabriel Ganne 2017-04-26 19:08:53 +02:00 коммит произвёл Bruce A. Mah
родитель b9478db947
Коммит d1c64c8a36

Просмотреть файл

@ -268,8 +268,8 @@ int decode_auth_setting(int enable_debug, char *authtoken, const char *private_k
printf("Auth Token Content:\n%s\n", plaintext);
printf("Auth Token Credentials:\n--> %s %s\n", s_username, s_password);
}
*username = (char *) calloc(21, sizeof(char *));
*password = (char *) calloc(21, sizeof(char *));
*username = (char *) calloc(21, sizeof(char));
*password = (char *) calloc(21, sizeof(char));
strncpy(*username, s_username, 20);
strncpy(*password, s_password, 20);
return (0);