am 905874ab: Merge "adb: avoid compilation errors for unused results"
* commit '905874abe45279d7c668e590d404880dd91b1869': adb: avoid compilation errors for unused results
This commit is contained in:
commit
c563c38d06
1 changed files with 2 additions and 2 deletions
|
|
@ -159,13 +159,13 @@ static int write_public_keyfile(RSA *private_key, const char *private_key_path)
|
|||
|
||||
bio = BIO_push(b64, bfile);
|
||||
BIO_write(bio, &pkey, sizeof(pkey));
|
||||
BIO_flush(bio);
|
||||
(void) BIO_flush(bio);
|
||||
BIO_pop(b64);
|
||||
BIO_free(b64);
|
||||
|
||||
get_user_info(info, sizeof(info));
|
||||
BIO_write(bfile, info, strlen(info));
|
||||
BIO_flush(bfile);
|
||||
(void) BIO_flush(bfile);
|
||||
BIO_free_all(bfile);
|
||||
|
||||
return 1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue