| 157 | } |
| 158 | |
| 159 | void signature_check_clear(struct signature_check *sigc) |
| 160 | { |
| 161 | FREE_AND_NULL(sigc->payload); |
| 162 | FREE_AND_NULL(sigc->output); |
| 163 | FREE_AND_NULL(sigc->gpg_status); |
| 164 | FREE_AND_NULL(sigc->signer); |
| 165 | FREE_AND_NULL(sigc->key); |
| 166 | FREE_AND_NULL(sigc->fingerprint); |
| 167 | FREE_AND_NULL(sigc->primary_key_fingerprint); |
| 168 | } |
| 169 | |
| 170 | /* An exclusive status -- only one of them can appear in output */ |
| 171 | #define GPG_STATUS_EXCLUSIVE (1<<0) |
no outgoing calls
no test coverage detected