Replace strlcpy with strncpy

The former isn't portable.
pull/100/head
Andri Yngvason 2023-09-29 22:00:46 +00:00
parent 3794405101
commit bdadcad1c8
2 changed files with 6 additions and 3 deletions

View File

@ -609,7 +609,8 @@ bool crypto_rsa_priv_key_load(struct crypto_rsa_priv_key* priv,
}
char head[128];
strlcpy(head, line, sizeof(head));
strncpy(head, line, sizeof(head));
head[sizeof(head) - 1] = '\0';
char* end = strchr(head, '\n');
if (end)
*end = '\0';

View File

@ -755,9 +755,11 @@ static int on_rsa_aes_credentials(struct nvnc_client* client)
char username[256];
char password[256];
strlcpy(username, (const char*)(msg + 1), username_len + 1);
strlcpy(password, (const char*)(msg + 2 + username_len),
strncpy(username, (const char*)(msg + 1), username_len + 1);
username[sizeof(username) - 1] = '\0';
strncpy(password, (const char*)(msg + 2 + username_len),
password_len + 1);
password[sizeof(password) - 1] = '\0';
if (server->auth_fn(username, password, server->auth_ud)) {
nvnc_log(NVNC_LOG_INFO, "User \"%s\" authenticated", username);