Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
a2753079
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a2753079
编写于
6月 29, 2011
作者:
O
Osier Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tests: Fix memory leak in virnetmessagetest
Detected when playing with "make -C tests valgrind".
上级
c9f604fc
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
13 deletion
+30
-13
tests/virnetmessagetest.c
tests/virnetmessagetest.c
+30
-13
未找到文件。
tests/virnetmessagetest.c
浏览文件 @
a2753079
...
...
@@ -167,6 +167,7 @@ static int testMessagePayloadEncode(const void *args ATTRIBUTE_UNUSED)
{
virNetMessageError
err
;
static
virNetMessage
msg
;
int
ret
=
-
1
;
static
const
char
expect
[]
=
{
0x00
,
0x00
,
0x00
,
0x74
,
/* Length */
0x11
,
0x22
,
0x33
,
0x44
,
/* Program */
...
...
@@ -204,19 +205,21 @@ static int testMessagePayloadEncode(const void *args ATTRIBUTE_UNUSED)
err
.
code
=
VIR_ERR_INTERNAL_ERROR
;
err
.
domain
=
VIR_FROM_RPC
;
err
.
level
=
VIR_ERR_ERROR
;
if
(
VIR_ALLOC
(
err
.
message
)
<
0
)
return
-
1
;
goto
cleanup
;
*
err
.
message
=
strdup
(
"Hello World"
);
err
.
level
=
VIR_ERR_ERROR
;
if
(
VIR_ALLOC
(
err
.
str1
)
<
0
)
return
-
1
;
goto
cleanup
;
*
err
.
str1
=
strdup
(
"One"
);
if
(
VIR_ALLOC
(
err
.
str2
)
<
0
)
return
-
1
;
goto
cleanup
;
*
err
.
str2
=
strdup
(
"Two"
);
if
(
VIR_ALLOC
(
err
.
str3
)
<
0
)
return
-
1
;
goto
cleanup
;
*
err
.
str3
=
strdup
(
"Three"
);
err
.
int1
=
1
;
err
.
int2
=
2
;
...
...
@@ -228,29 +231,43 @@ static int testMessagePayloadEncode(const void *args ATTRIBUTE_UNUSED)
msg
.
header
.
status
=
VIR_NET_ERROR
;
if
(
virNetMessageEncodeHeader
(
&
msg
)
<
0
)
return
-
1
;
goto
cleanup
;
if
(
virNetMessageEncodePayload
(
&
msg
,
(
xdrproc_t
)
xdr_virNetMessageError
,
&
err
)
<
0
)
return
-
1
;
goto
cleanup
;
if
(
ARRAY_CARDINALITY
(
expect
)
!=
msg
.
bufferLength
)
{
VIR_DEBUG
(
"Expect message length %zu got %zu"
,
sizeof
(
expect
),
msg
.
bufferLength
);
return
-
1
;
goto
cleanup
;
}
if
(
msg
.
bufferOffset
!=
0
)
{
VIR_DEBUG
(
"Expect message offset 0 got %zu"
,
msg
.
bufferOffset
);
return
-
1
;
goto
cleanup
;
}
if
(
memcmp
(
expect
,
msg
.
buffer
,
sizeof
(
expect
))
!=
0
)
{
virtTestDifferenceBin
(
stderr
,
expect
,
msg
.
buffer
,
sizeof
(
expect
));
return
-
1
;
}
return
0
;
goto
cleanup
;
}
ret
=
0
;
cleanup:
if
(
err
.
message
)
VIR_FREE
(
*
err
.
message
);
if
(
err
.
str1
)
VIR_FREE
(
*
err
.
str1
);
if
(
err
.
str2
)
VIR_FREE
(
*
err
.
str2
);
if
(
err
.
str3
)
VIR_FREE
(
*
err
.
str3
);
VIR_FREE
(
err
.
message
);
VIR_FREE
(
err
.
str1
);
VIR_FREE
(
err
.
str2
);
VIR_FREE
(
err
.
str3
);
return
ret
;
}
static
int
testMessagePayloadDecode
(
const
void
*
args
ATTRIBUTE_UNUSED
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录