From 11d25078c0154f43e1279d756c02f7a8f1d0a85b Mon Sep 17 00:00:00 2001 From: kailixu Date: Sat, 24 Aug 2024 10:04:32 +0800 Subject: [PATCH] fix: memory leak of geos --- source/util/src/tgeosctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/util/src/tgeosctx.c b/source/util/src/tgeosctx.c index e0986ad18c..bfaed88671 100644 --- a/source/util/src/tgeosctx.c +++ b/source/util/src/tgeosctx.c @@ -84,7 +84,7 @@ int32_t getThreadLocalGeosCtx(SGeosContext **ppCtx) { _exit: if (code != 0) { *ppCtx = NULL; - uError("failed to get thread local geos context at lino:%d since %s", lino, tstrerror(code)); + uError("failed to get geos context at lino:%d since %s", lino, tstrerror(code)); } TAOS_RETURN(code);