From 42693517ae217811e2cf31ad5a5a12c039b9e3ec Mon Sep 17 00:00:00 2001 From: Shengliang Guan Date: Tue, 10 Nov 2020 07:09:25 +0000 Subject: [PATCH] TD-1848 --- src/os/inc/osMemory.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/os/inc/osMemory.h b/src/os/inc/osMemory.h index 438bb88474..0616006650 100644 --- a/src/os/inc/osMemory.h +++ b/src/os/inc/osMemory.h @@ -66,6 +66,7 @@ void taosTMemset(void *ptr, int c); #undef tmalloc #undef tcalloc #undef trealloc + #undef tfree #define tmalloc(size) taosMallocMem(size, __FILE__, __LINE__) #define tcalloc(num, size) taosCallocMem(num, size, __FILE__, __LINE__) #define trealloc(ptr, size) taosReallocMem(ptr, size, __FILE__, __LINE__) -- GitLab