Skip to content
Snippets Groups Projects
Commit edb7e345 authored by ruslantproductengine's avatar ruslantproductengine
Browse files

MAINT-4435 FIXED build fix patchset2

parent 3d9406a2
No related branches found
No related tags found
No related merge requests found
......@@ -2184,8 +2184,6 @@ void* ll_aligned_malloc_fallback( size_t size, int align )
// call debugger
__asm int 3;
}
memset(p, 0xaa, for_alloc);
memset((void*)((char*)p + for_alloc), 0xbb, sysinfo.dwPageSize);
DWORD old;
BOOL Res = VirtualProtect((void*)((char*)p + for_alloc), sysinfo.dwPageSize, PAGE_NOACCESS, &old);
if(FALSE == Res) {
......
......@@ -156,9 +156,9 @@ bool ll_get_stack_trace(std::vector<std::string>& lines)
return false;
}
void ll_get_stack_trace2(std::vector<std::string>& lines)
void ll_get_stack_trace_internal(std::vector<std::string>& lines)
{
return false;
}
#endif
......
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