PCM: Fix use of variable after it was moved into the cache

This commit is contained in:
Ian McInerney 2023-06-16 00:07:54 +01:00
parent 63e91366e2
commit c52fb23d4f
1 changed files with 6 additions and 4 deletions

View File

@ -428,8 +428,9 @@ bool PLUGIN_CONTENT_MANAGER::CacheRepository( const wxString& aRepositoryId )
wxString url = std::get<2>( *repository_tuple );
nlohmann::json js;
PCM_REPOSITORY current_repo;
nlohmann::json js;
PCM_REPOSITORY current_repo;
PCM_REPOSITORY& current_repo_ref = current_repo;
std::shared_ptr<PROGRESS_REPORTER> reporter;
@ -522,12 +523,13 @@ bool PLUGIN_CONTENT_MANAGER::CacheRepository( const wxString& aRepositoryId )
packages_cache_stream << std::setw( 4 ) << js << std::endl;
m_repository_cache[aRepositoryId] = std::move( current_repo );
current_repo_ref = m_repository_cache[aRepositoryId];
}
if( current_repo.resources )
if( current_repo_ref.resources )
{
// Check resources file date, redownload if needed
PCM_RESOURCE_REFERENCE& resources = *current_repo.resources;
PCM_RESOURCE_REFERENCE& resources = *current_repo_ref.resources;
wxFileName resource_file( repo_cache.GetPath(), wxT( "resources.zip" ) );