Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
331e62e7
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
331e62e7
编写于
10月 19, 2022
作者:
H
Hongze Cheng
提交者:
GitHub
10月 19, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #17470 from taosdata/fix/hzcheng_coverity_scan
fix: coverity scan problem
上级
881db69f
cc455b99
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
15 addition
and
12 deletion
+15
-12
source/dnode/vnode/src/tsdb/tsdbFS.c
source/dnode/vnode/src/tsdb/tsdbFS.c
+8
-8
source/dnode/vnode/src/tsdb/tsdbReaderWriter.c
source/dnode/vnode/src/tsdb/tsdbReaderWriter.c
+1
-1
source/dnode/vnode/src/tsdb/tsdbSnapshot.c
source/dnode/vnode/src/tsdb/tsdbSnapshot.c
+2
-2
source/dnode/vnode/src/vnd/vnodeSvr.c
source/dnode/vnode/src/vnd/vnodeSvr.c
+4
-1
未找到文件。
source/dnode/vnode/src/tsdb/tsdbFS.c
浏览文件 @
331e62e7
...
...
@@ -354,14 +354,14 @@ static int32_t tsdbRemoveFileSet(STsdb *pTsdb, SDFileSet *pSet) {
nRef
=
atomic_sub_fetch_32
(
&
pSet
->
pDataF
->
nRef
,
1
);
if
(
nRef
==
0
)
{
tsdbDataFileName
(
pTsdb
,
pSet
->
diskId
,
pSet
->
fid
,
pSet
->
pDataF
,
fname
);
taosRemoveFile
(
fname
);
(
void
)
taosRemoveFile
(
fname
);
taosMemoryFree
(
pSet
->
pDataF
);
}
nRef
=
atomic_sub_fetch_32
(
&
pSet
->
pSmaF
->
nRef
,
1
);
if
(
nRef
==
0
)
{
tsdbSmaFileName
(
pTsdb
,
pSet
->
diskId
,
pSet
->
fid
,
pSet
->
pSmaF
,
fname
);
taosRemoveFile
(
fname
);
(
void
)
taosRemoveFile
(
fname
);
taosMemoryFree
(
pSet
->
pSmaF
);
}
...
...
@@ -369,7 +369,7 @@ static int32_t tsdbRemoveFileSet(STsdb *pTsdb, SDFileSet *pSet) {
nRef
=
atomic_sub_fetch_32
(
&
pSet
->
aSttF
[
iStt
]
->
nRef
,
1
);
if
(
nRef
==
0
)
{
tsdbSttFileName
(
pTsdb
,
pSet
->
diskId
,
pSet
->
fid
,
pSet
->
aSttF
[
iStt
],
fname
);
taosRemoveFile
(
fname
);
(
void
)
taosRemoveFile
(
fname
);
taosMemoryFree
(
pSet
->
aSttF
[
iStt
]);
}
}
...
...
@@ -526,7 +526,7 @@ static int32_t tsdbMergeFileSet(STsdb *pTsdb, SDFileSet *pSetOld, SDFileSet *pSe
nRef
=
atomic_sub_fetch_32
(
&
pSttFile
->
nRef
,
1
);
if
(
nRef
==
0
)
{
tsdbSttFileName
(
pTsdb
,
pSetOld
->
diskId
,
pSetOld
->
fid
,
pSttFile
,
fname
);
taosRemoveFile
(
fname
);
(
void
)
taosRemoveFile
(
fname
);
taosMemoryFree
(
pSttFile
);
}
pSetOld
->
aSttF
[
iStt
]
=
NULL
;
...
...
@@ -547,7 +547,7 @@ static int32_t tsdbMergeFileSet(STsdb *pTsdb, SDFileSet *pSetOld, SDFileSet *pSe
nRef
=
atomic_sub_fetch_32
(
&
pSttFile
->
nRef
,
1
);
if
(
nRef
==
0
)
{
tsdbSttFileName
(
pTsdb
,
pSetOld
->
diskId
,
pSetOld
->
fid
,
pSttFile
,
fname
);
taosRemoveFile
(
fname
);
(
void
)
taosRemoveFile
(
fname
);
taosMemoryFree
(
pSttFile
);
}
...
...
@@ -1102,7 +1102,7 @@ void tsdbFSUnref(STsdb *pTsdb, STsdbFS *pFS) {
ASSERT
(
nRef
>=
0
);
if
(
nRef
==
0
)
{
tsdbDataFileName
(
pTsdb
,
pSet
->
diskId
,
pSet
->
fid
,
pSet
->
pDataF
,
fname
);
taosRemoveFile
(
fname
);
(
void
)
taosRemoveFile
(
fname
);
taosMemoryFree
(
pSet
->
pDataF
);
}
...
...
@@ -1111,7 +1111,7 @@ void tsdbFSUnref(STsdb *pTsdb, STsdbFS *pFS) {
ASSERT
(
nRef
>=
0
);
if
(
nRef
==
0
)
{
tsdbSmaFileName
(
pTsdb
,
pSet
->
diskId
,
pSet
->
fid
,
pSet
->
pSmaF
,
fname
);
taosRemoveFile
(
fname
);
(
void
)
taosRemoveFile
(
fname
);
taosMemoryFree
(
pSet
->
pSmaF
);
}
...
...
@@ -1121,7 +1121,7 @@ void tsdbFSUnref(STsdb *pTsdb, STsdbFS *pFS) {
ASSERT
(
nRef
>=
0
);
if
(
nRef
==
0
)
{
tsdbSttFileName
(
pTsdb
,
pSet
->
diskId
,
pSet
->
fid
,
pSet
->
aSttF
[
iStt
],
fname
);
taosRemoveFile
(
fname
);
(
void
)
taosRemoveFile
(
fname
);
taosMemoryFree
(
pSet
->
aSttF
[
iStt
]);
/* code */
}
...
...
source/dnode/vnode/src/tsdb/tsdbReaderWriter.c
浏览文件 @
331e62e7
...
...
@@ -1334,8 +1334,8 @@ int32_t tsdbDelFWriterOpen(SDelFWriter **ppWriter, SDelFile *pFile, STsdb *pTsdb
_exit:
if
(
code
)
{
if
(
pDelFWriter
)
{
taosMemoryFree
(
pDelFWriter
);
tsdbCloseFile
(
&
pDelFWriter
->
pWriteH
);
taosMemoryFree
(
pDelFWriter
);
}
*
ppWriter
=
NULL
;
tsdbError
(
"vgId:%d %s failed at line %d since %s"
,
TD_VID
(
pTsdb
->
pVnode
),
__func__
,
lino
,
tstrerror
(
errno
));
...
...
source/dnode/vnode/src/tsdb/tsdbSnapshot.c
浏览文件 @
331e62e7
...
...
@@ -517,8 +517,8 @@ int32_t tsdbSnapReaderOpen(STsdb* pTsdb, int64_t sver, int64_t ever, int8_t type
_exit:
if
(
code
)
{
tsdbError
(
"vgId:%d %s failed at line %d since %s, TSDB path: %s"
,
TD_VID
(
pTsdb
->
pVnode
),
lino
,
tstrerror
(
code
)
,
pTsdb
->
path
);
tsdbError
(
"vgId:%d %s failed at line %d since %s, TSDB path: %s"
,
TD_VID
(
pTsdb
->
pVnode
),
__func__
,
lino
,
tstrerror
(
code
),
pTsdb
->
path
);
*
ppReader
=
NULL
;
if
(
pReader
)
{
...
...
source/dnode/vnode/src/vnd/vnodeSvr.c
浏览文件 @
331e62e7
...
...
@@ -53,7 +53,10 @@ int32_t vnodePreProcessWriteMsg(SVnode *pVnode, SRpcMsg *pMsg) {
for
(
int32_t
iReq
=
0
;
iReq
<
nReqs
;
iReq
++
)
{
tb_uid_t
uid
=
tGenIdPI64
();
char
*
name
=
NULL
;
tStartDecode
(
&
dc
);
if
(
tStartDecode
(
&
dc
)
<
0
)
{
code
=
TSDB_CODE_INVALID_MSG
;
goto
_err
;
}
if
(
tDecodeI32v
(
&
dc
,
NULL
)
<
0
)
{
code
=
TSDB_CODE_INVALID_MSG
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录