mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-10 10:26:47 +09:00
tests: Fix pointer arithmetic in torture_pki_*_publickey_base64
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
@@ -20,15 +20,19 @@ static int setup_rsa_key(void **state)
|
||||
assert_true(b64_key != NULL);
|
||||
|
||||
q = p = b64_key;
|
||||
while (*p != ' ') p++;
|
||||
*p = '\0';
|
||||
while (p != NULL && *p != '\0' && *p != ' ') p++;
|
||||
if (p != NULL) {
|
||||
*p = '\0';
|
||||
}
|
||||
|
||||
type = ssh_key_type_from_name(q);
|
||||
assert_true(type == SSH_KEYTYPE_RSA);
|
||||
|
||||
q = ++p;
|
||||
while (*p != ' ') p++;
|
||||
*p = '\0';
|
||||
while (p != NULL && *p != '\0' && *p != ' ') p++;
|
||||
if (p != NULL) {
|
||||
*p = '\0';
|
||||
}
|
||||
|
||||
rc = ssh_pki_import_pubkey_base64(q, type, &key);
|
||||
assert_true(rc == 0);
|
||||
|
||||
Reference in New Issue
Block a user