mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
Initialize base address to 0x0
This commit is contained in:
parent
8af5753da5
commit
25a43cd2ec
1 changed files with 1 additions and 0 deletions
|
@ -16,6 +16,7 @@ SharedPtr<SharedMemory> SharedMemory::Create(std::string name) {
|
|||
SharedPtr<SharedMemory> shared_memory(new SharedMemory);
|
||||
|
||||
shared_memory->name = std::move(name);
|
||||
shared_memory->base_address = 0x0;
|
||||
|
||||
return shared_memory;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue