mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-14 02:27:21 -07:00
Fixed potential memory corruption when loading personal item tracker notes (#2512)
This commit is contained in:
parent
4a4f7e6d96
commit
e8e4afbbcd
1 changed files with 1 additions and 0 deletions
|
@ -1102,6 +1102,7 @@ void InitItemTracker() {
|
|||
});
|
||||
Ship::RegisterHook<Ship::LoadFile>([](uint32_t fileNum) {
|
||||
const char* initialTrackerNotes = CVarGetString(("gItemTrackerNotes" + std::to_string(fileNum)).c_str(), "");
|
||||
itemTrackerNotes.resize(strlen(initialTrackerNotes) + 1);
|
||||
strcpy(itemTrackerNotes.Data, initialTrackerNotes);
|
||||
});
|
||||
Ship::RegisterHook<Ship::DeleteFile>([](uint32_t fileNum) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue