From 9e19c5292443f1ca0f474f5bf6c7b01c4a1284c3 Mon Sep 17 00:00:00 2001 From: Yihao Deng Date: Sun, 28 Apr 2024 06:50:54 +0000 Subject: [PATCH] Remove unnecessary memory free in uploadCheckpointData function --- source/libs/stream/src/streamCheckpoint.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/libs/stream/src/streamCheckpoint.c b/source/libs/stream/src/streamCheckpoint.c index b52c512c37..ec96ad7108 100644 --- a/source/libs/stream/src/streamCheckpoint.c +++ b/source/libs/stream/src/streamCheckpoint.c @@ -453,7 +453,6 @@ int32_t uploadCheckpointData(void* param) { taosRemoveDir(path); taosMemoryFree(path); taosMemoryFree(arg->taskId); - taosMemoryFree(arg->taskStr); taosMemoryFree(arg); return code; }