mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-25 19:26:21 +00:00
Use null check convention in gpg.c
This commit is contained in:
@@ -222,7 +222,7 @@ p_gpg_sign(const char * const str, const char * const fp)
|
|||||||
|
|
||||||
size_t len = 0;
|
size_t len = 0;
|
||||||
char *signed_str = gpgme_data_release_and_get_mem(signed_data, &len);
|
char *signed_str = gpgme_data_release_and_get_mem(signed_data, &len);
|
||||||
if (signed_str != NULL) {
|
if (signed_str) {
|
||||||
signed_str[len] = 0;
|
signed_str[len] = 0;
|
||||||
result = _remove_header_footer(signed_str, PGP_SIGNATURE_FOOTER);
|
result = _remove_header_footer(signed_str, PGP_SIGNATURE_FOOTER);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user