mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-18 01:46:47 +00:00
ncm: fix random error when deleting content
This commit is contained in:
parent
88dd414721
commit
c67c29ebd5
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ namespace ams::ncm {
|
||||||
static Result CleanupBase(const char *root_path);
|
static Result CleanupBase(const char *root_path);
|
||||||
static Result VerifyBase(const char *root_path);
|
static Result VerifyBase(const char *root_path);
|
||||||
public:
|
public:
|
||||||
ContentStorageImpl() : rights_id_cache(nullptr), content_iterator(std::nullopt), last_content_offset(std::nullopt) { /* ... */ }
|
ContentStorageImpl() : placeholder_accessor(), cached_content_id(InvalidContentId), cached_file_handle(), rights_id_cache(nullptr), content_iterator(std::nullopt), last_content_offset(std::nullopt) { /* ... */ }
|
||||||
~ContentStorageImpl();
|
~ContentStorageImpl();
|
||||||
|
|
||||||
Result Initialize(const char *root_path, MakeContentPathFunction content_path_func, MakePlaceHolderPathFunction placeholder_path_func, bool delay_flush, RightsIdCache *rights_id_cache);
|
Result Initialize(const char *root_path, MakeContentPathFunction content_path_func, MakePlaceHolderPathFunction placeholder_path_func, bool delay_flush, RightsIdCache *rights_id_cache);
|
||||||
|
|
Loading…
Reference in a new issue