Skip to content
Snippets Groups Projects
Commit b16fe217 authored by bunnei's avatar bunnei
Browse files

Merge pull request #690 from Zaneo/sharedmemory

Shared_memory: Initialize base address to 0x0
parents 8af5753d 25a43cd2
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment