Skip to content

Commit

Permalink
Fix crash on exit
Browse files Browse the repository at this point in the history
  • Loading branch information
igor725 committed Jun 13, 2024
1 parent 5caebec commit 35fd48e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eventsystem/events/system_circle/intern/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct PImplReader {
});
}

~PImplReader() {}
~PImplReader() { reader.join(); }
};

struct PImplWriter {
Expand Down
2 changes: 1 addition & 1 deletion eventsystem/events/system_cross/intern/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct PImplReader {
});
}

~PImplReader() {}
~PImplReader() { reader.join(); }
};

struct PImplWriter {
Expand Down
4 changes: 2 additions & 2 deletions modules/external/libSceSystemService/entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ EXPORT SYSV_ABI int32_t sceSystemServiceLoadExec(const char* path, char* const a

auto fullpath = accessFileManager().getMappedPath(path);
if (fullpath) {
auto apppath = accessFileManager().getMountPoint(MountType::App, "/app0/");
auto appupd = accessFileManager().getMountPoint(MountType::Update, "/app1/");
auto apppath = accessFileManager().getMountPoint(MountType::App, MOUNT_POINT_APP.data());
auto appupd = accessFileManager().getMountPoint(MountType::Update, MOUNT_POINT_UPDATE.data());

events::system_circle::postEventLoadExec({fullpath->string().c_str(), apppath.string().c_str(), appupd.string().c_str()});
} else {
Expand Down

0 comments on commit 35fd48e

Please sign in to comment.