提交 43cec2ed 编写于 作者: E Enrico Giordani

[Code cleanup] Better expression grouping.

上级 53a2a35a
......@@ -1067,7 +1067,7 @@ BOOL FreeHeapBlock(LPVOID addr, size_t size) {
}
// Check if the address belongs to the memory map heap or to the system heap
BOOL addressInRedisHeap = (addr >= g_pQForkControl->heapStart && addr < g_pQForkControl->heapEnd);
BOOL addressInRedisHeap = ((addr >= g_pQForkControl->heapStart) && (addr < g_pQForkControl->heapEnd));
// g_BypassMemoryMapOnAlloc is true for the forked process, in this case
// we need to handle the address differently based on the heap that was
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册