Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
1fb5a8c2
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1185
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
1fb5a8c2
编写于
4月 14, 2020
作者:
S
slguan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix some memory lost
上级
5b335313
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
12 addition
and
2 deletion
+12
-2
src/dnode/src/dnodeMClient.c
src/dnode/src/dnodeMClient.c
+1
-0
src/mnode/src/mgmtSdb.c
src/mnode/src/mgmtSdb.c
+2
-1
src/plugins/http/inc/tgHandle.h
src/plugins/http/inc/tgHandle.h
+1
-0
src/plugins/http/src/httpSystem.c
src/plugins/http/src/httpSystem.c
+3
-1
src/plugins/http/src/tgHandle.c
src/plugins/http/src/tgHandle.c
+5
-0
未找到文件。
src/dnode/src/dnodeMClient.c
浏览文件 @
1fb5a8c2
...
@@ -249,6 +249,7 @@ static bool dnodeReadMnodeIpList() {
...
@@ -249,6 +249,7 @@ static bool dnodeReadMnodeIpList() {
PARSE_OVER:
PARSE_OVER:
free
(
content
);
free
(
content
);
cJSON_Delete
(
root
);
fclose
(
fp
);
fclose
(
fp
);
return
ret
;
return
ret
;
}
}
...
...
src/mnode/src/mgmtSdb.c
浏览文件 @
1fb5a8c2
...
@@ -167,6 +167,7 @@ void sdbCleanUp() {
...
@@ -167,6 +167,7 @@ void sdbCleanUp() {
sem_destroy
(
&
tsSdbSync
->
sem
);
sem_destroy
(
&
tsSdbSync
->
sem
);
pthread_mutex_destroy
(
&
tsSdbSync
->
mutex
);
pthread_mutex_destroy
(
&
tsSdbSync
->
mutex
);
walClose
(
tsSdbSync
->
wal
);
walClose
(
tsSdbSync
->
wal
);
free
(
tsSdbSync
);
tsSdbSync
=
NULL
;
tsSdbSync
=
NULL
;
}
}
}
}
...
@@ -576,5 +577,5 @@ void sdbCloseTable(void *handle) {
...
@@ -576,5 +577,5 @@ void sdbCloseTable(void *handle) {
pthread_mutex_destroy
(
&
pTable
->
mutex
);
pthread_mutex_destroy
(
&
pTable
->
mutex
);
sdbTrace
(
"table:%s, is closed, numOfTables:%d"
,
pTable
->
tableName
,
tsSdbNumOfTables
);
sdbTrace
(
"table:%s, is closed, numOfTables:%d"
,
pTable
->
tableName
,
tsSdbNumOfTables
);
t
free
(
pTable
);
free
(
pTable
);
}
}
src/plugins/http/inc/tgHandle.h
浏览文件 @
1fb5a8c2
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
#define TG_PASS_URL_POS 3
#define TG_PASS_URL_POS 3
void
tgInitHandle
(
HttpServer
*
pServer
);
void
tgInitHandle
(
HttpServer
*
pServer
);
void
tgCleanupHandle
();
bool
tgProcessRquest
(
struct
HttpContext
*
pContext
);
bool
tgProcessRquest
(
struct
HttpContext
*
pContext
);
...
...
src/plugins/http/src/httpSystem.c
浏览文件 @
1fb5a8c2
...
@@ -122,12 +122,14 @@ void httpStopSystem() {
...
@@ -122,12 +122,14 @@ void httpStopSystem() {
if
(
httpServer
!=
NULL
)
{
if
(
httpServer
!=
NULL
)
{
httpServer
->
online
=
false
;
httpServer
->
online
=
false
;
}
}
tgCleanupHandle
();
}
}
void
httpCleanUpSystem
()
{
void
httpCleanUpSystem
()
{
httpPrint
(
"http service cleanup"
);
httpPrint
(
"http service cleanup"
);
httpStopSystem
();
httpStopSystem
();
#if 0
#if 1
if
(
httpServer
==
NULL
)
{
if
(
httpServer
==
NULL
)
{
return
;
return
;
}
}
...
...
src/plugins/http/src/tgHandle.c
浏览文件 @
1fb5a8c2
...
@@ -116,6 +116,7 @@ void tgFreeSchemas() {
...
@@ -116,6 +116,7 @@ void tgFreeSchemas() {
}
}
free
(
tgSchemas
.
schemas
);
free
(
tgSchemas
.
schemas
);
tgSchemas
.
size
=
0
;
tgSchemas
.
size
=
0
;
tgSchemas
.
schemas
=
NULL
;
}
}
}
}
...
@@ -290,6 +291,10 @@ void tgInitHandle(HttpServer *pServer) {
...
@@ -290,6 +291,10 @@ void tgInitHandle(HttpServer *pServer) {
httpAddMethod
(
pServer
,
&
tgDecodeMethod
);
httpAddMethod
(
pServer
,
&
tgDecodeMethod
);
}
}
void
tgCleanupHandle
()
{
tgFreeSchemas
();
}
bool
tgGetUserFromUrl
(
HttpContext
*
pContext
)
{
bool
tgGetUserFromUrl
(
HttpContext
*
pContext
)
{
HttpParser
*
pParser
=
&
pContext
->
parser
;
HttpParser
*
pParser
=
&
pContext
->
parser
;
if
(
pParser
->
path
[
TG_USER_URL_POS
].
len
>
TSDB_USER_LEN
-
1
||
pParser
->
path
[
TG_USER_URL_POS
].
len
<=
0
)
{
if
(
pParser
->
path
[
TG_USER_URL_POS
].
len
>
TSDB_USER_LEN
-
1
||
pParser
->
path
[
TG_USER_URL_POS
].
len
<=
0
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录