cpp: Check fpr of import status for NULL

* lang/cpp/src/importresult.cpp (GpgME::ImportResult::Private): Check
fpr for NULL.
--

GnuPG-bug-id: 5713
This commit is contained in:
Ingo Klöcker 2021-12-22 12:16:34 +01:00
parent 305d8668ca
commit 300776f391

View File

@ -48,7 +48,9 @@ public:
// We just need to handle the pointers in the structs:
for (gpgme_import_status_t is = r.imports ; is ; is = is->next) {
gpgme_import_status_t copy = new _gpgme_import_status(*is);
copy->fpr = strdup(is->fpr);
if (is->fpr) {
copy->fpr = strdup(is->fpr);
}
copy->next = nullptr;
imports.push_back(copy);
}