From: Vsevolod Stakhov Date: Wed, 27 Jul 2022 20:53:26 +0000 (+0100) Subject: [Minor] Explicitly resolve parent as it could not be resolved initially X-Git-Tag: 3.3~106 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fc4bcfbe94a2def980309d2a7c91aca5d4c6e5dd;p=thirdparty%2Frspamd.git [Minor] Explicitly resolve parent as it could not be resolved initially --- diff --git a/src/libserver/symcache/symcache_impl.cxx b/src/libserver/symcache/symcache_impl.cxx index 28db9aaa99..24c9851d49 100644 --- a/src/libserver/symcache/symcache_impl.cxx +++ b/src/libserver/symcache/symcache_impl.cxx @@ -495,6 +495,7 @@ auto symcache::get_item_by_name(std::string_view name, bool resolve_parent) cons } if (resolve_parent && it->second->is_virtual()) { + it->second->resolve_parent(*this); return it->second->get_parent(*this); }