From a4e6444646c1929492184534ee7c3a5b106f9ad6 Mon Sep 17 00:00:00 2001 From: kailixu Date: Sat, 24 Aug 2024 10:37:29 +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 76a81aa901..9248c8cf58 100644 --- a/source/util/src/tgeosctx.c +++ b/source/util/src/tgeosctx.c @@ -84,4 +84,4 @@ _exit: const char *getGeosErrMsg(int32_t code) { return (tlGeosCtx && tlGeosCtx->errMsg[0] != 0) ? tlGeosCtx->errMsg : (code ? tstrerror(code) : ""); -} \ No newline at end of file +}