MAINT-4435 FIXED build fix patchset2
parent
3d9406a21e
commit
edb7e3450f
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue