From 203c04ca2dcc596cbb4fa679444c754e4d3272bd Mon Sep 17 00:00:00 2001 From: kailixu Date: Wed, 28 Aug 2024 19:57:49 +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 362159d42a..805d398275 100644 --- a/source/util/src/tgeosctx.c +++ b/source/util/src/tgeosctx.c @@ -93,7 +93,7 @@ int32_t getThreadLocalGeosCtx(SGeosContext **ppCtx) { _exit: if (code != 0) { *ppCtx = NULL; - uError("failed to get geos context at lino:%d since %s", lino, tstrerror(code)); + uError("failed to get geos context at line:%d since %s", lino, tstrerror(code)); } TAOS_RETURN(code); }