зеркало из https://github.com/microsoft/git.git
libsecret: retrieve empty password
Since 0ce02e2f
(credential/libsecret: store new attributes, 2023-06-16)
a test that stores empty username and password fails when
t0303-credential-external.sh is run with
GIT_TEST_CREDENTIAL_HELPER=libsecret.
Retrieve empty password carefully. This fixes test:
ok 14 - helper (libsecret) can store empty username
Signed-off-by: M Hickford <mirth.hickford@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
dadef801b3
Коммит
8f1f2023b7
|
@ -164,6 +164,9 @@ static int keyring_get(struct credential *c)
|
|||
if (g_strv_length(parts) >= 1) {
|
||||
g_free(c->password);
|
||||
c->password = g_strdup(parts[0]);
|
||||
} else {
|
||||
g_free(c->password);
|
||||
c->password = g_strdup("");
|
||||
}
|
||||
for (int i = 1; i < g_strv_length(parts); i++) {
|
||||
if (g_str_has_prefix(parts[i], "password_expiry_utc=")) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче