Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
3d5e2a15
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看板
提交
3d5e2a15
编写于
8月 27, 2007
作者:
D
Daniel Veillard
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
* src/xend_internal.c: applied patch from Masayuki Sunou to avoid
memory corruption on very large XML dumps. Daniel
上级
c178f528
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
38 addition
and
7 deletion
+38
-7
ChangeLog
ChangeLog
+5
-0
NEWS
NEWS
+28
-0
src/xend_internal.c
src/xend_internal.c
+5
-7
未找到文件。
ChangeLog
浏览文件 @
3d5e2a15
Mon Aug 27 11:16:48 CEST 2007 Daniel Veillard <veillard@redhat.com>
* src/xend_internal.c: applied patch from Masayuki Sunou to avoid
memory corruption on very large XML dumps.
Tue Aug 21 16:48:41 CEST 2007 Daniel Veillard <veillard@redhat.com>
* configure.in libvirt.spec.in include/libvirt/libvirt.h docs/*:
...
...
NEWS
浏览文件 @
3d5e2a15
...
...
@@ -5,6 +5,34 @@
http://libvirt.org/news.html
Releases
0.3.2: Aug 21 2007:
- New features: KVM migration and save/restore (Jim Paris),
added API for migration (Richard Jones), added APIs for block device and
interface statistic (Richard Jones).
- Documentation: examples for XML network APIs,
fix typo and schedinfo synopsis in man page (Atsushi SAKAI),
hypervisor support page update (Richard Jones).
- Bug fixes: remove a couple of leaks in QEmu/KVM backend(Daniel berrange),
fix GnuTLS 1.0 compatibility (Richard Jones), --config/-f option
mistake for libvirtd (Richard Jones), remove leak in QEmu backend
(Jim Paris), fix some QEmu communication bugs (Jim Paris), UUID
lookup though proxy fix, setvcpus checking bugs (with Atsushi SAKAI),
int checking in virsh parameters (with Masayuki Sunou), deny devices
attach/detach for < Xen 3.0.4 (Masayuki Sunou), XenStore query
memory leak (Masayuki Sunou), virsh schedinfo cleanup (Saori Fukuta).
- Improvement: virsh new ttyconsole command, networking API implementation
for test driver (Daniel berrange), qemu/kvm feature reporting of
ACPI/APIC (David Lutterkort), checking of QEmu architectures (Daniel
berrange), improve devices XML errors reporting (Masayuki Sunou),
speedup of domain queries on Xen (Daniel berrange), augment XML dumps
with interface devices names (Richard Jones), internal API to query
drivers for features (Richard Jones).
- Cleanups: Improve virNodeGetInfo implentation (Daniel berrange),
general UUID code cleanup (Daniel berrange), fix API generator
file selection.
0.3.1: Jul 24 2007:
- Documentation: index to remote page, script to test certificates,
IPv6 remote support docs (Daniel Berrange), document
...
...
src/xend_internal.c
浏览文件 @
3d5e2a15
...
...
@@ -1346,7 +1346,6 @@ xend_parse_sexp_desc_os(virConnectPtr xend, struct sexpr *node, virBufferPtr buf
static
char
*
xend_parse_sexp_desc
(
virConnectPtr
conn
,
struct
sexpr
*
root
,
int
xendConfigVersion
)
{
char
*
ret
;
struct
sexpr
*
cur
,
*
node
;
const
char
*
tmp
;
char
*
tty
;
...
...
@@ -1362,10 +1361,9 @@ xend_parse_sexp_desc(virConnectPtr conn, struct sexpr *root, int xendConfigVersi
/* ERROR */
return
(
NULL
);
}
re
t
=
malloc
(
4000
);
if
(
re
t
==
NULL
)
buf
.
conten
t
=
malloc
(
4000
);
if
(
buf
.
conten
t
==
NULL
)
return
(
NULL
);
buf
.
content
=
ret
;
buf
.
size
=
4000
;
buf
.
use
=
0
;
...
...
@@ -1762,11 +1760,11 @@ xend_parse_sexp_desc(virConnectPtr conn, struct sexpr *root, int xendConfigVersi
virBufferAdd
(
&
buf
,
"</domain>
\n
"
,
10
);
buf
.
content
[
buf
.
use
]
=
0
;
return
(
re
t
);
return
(
buf
.
conten
t
);
error:
if
(
re
t
!=
NULL
)
free
(
re
t
);
if
(
buf
.
conten
t
!=
NULL
)
free
(
buf
.
conten
t
);
return
(
NULL
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录