Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
c9a8f273
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看板
提交
c9a8f273
编写于
3月 30, 2006
作者:
D
Daniel Veillard
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
* src/virsh.c: catching memory allocation error and existing, as
pointed by Jim Meyering Daniel
上级
85c23ead
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
30 addition
and
0 deletion
+30
-0
ChangeLog
ChangeLog
+5
-0
src/virsh.c
src/virsh.c
+25
-0
未找到文件。
ChangeLog
浏览文件 @
c9a8f273
Thu Mar 30 12:15:46 EST 2006 Daniel Veillard <veillard@redhat.com>
* src/virsh.c: catching memory allocation error and existing, as
pointed by Jim Meyering
Wed Mar 29 16:36:24 CEST 2006 Daniel Veillard <veillard@redhat.com>
* doc/*: rebuilt
...
...
src/virsh.c
浏览文件 @
c9a8f273
...
...
@@ -311,6 +311,11 @@ cmdList(vshControl * ctl, vshCmd * cmd ATTRIBUTE_UNUSED)
return
FALSE
;
}
ids
=
malloc
(
sizeof
(
int
)
*
maxid
);
if
(
ids
==
NULL
)
{
fprintf
(
stderr
,
"Failed to allocate %d bytes
\n
"
,
(
int
)
sizeof
(
int
)
*
maxid
);
exit
(
1
);
}
virConnectListDomains
(
ctl
->
conn
,
&
ids
[
0
],
maxid
);
vshPrint
(
ctl
,
VSH_HEADER
,
"%3s %-20s %s
\n
"
,
"Id"
,
"Name"
,
"State"
);
...
...
@@ -1284,6 +1289,10 @@ vshCommandGetToken(vshControl * ctl, char *str, char **end, char **res)
return
VSH_TK_END
;
*
res
=
malloc
(
sz
+
1
);
if
(
*
res
==
NULL
)
{
fprintf
(
stderr
,
"Failed to allocate %d bytes
\n
"
,
sz
+
1
);
exit
(
1
);
}
memcpy
(
*
res
,
tkstr
,
sz
);
*
(
*
res
+
sz
)
=
'\0'
;
...
...
@@ -1379,6 +1388,11 @@ vshCommandParse(vshControl * ctl, char *cmdstr)
if
(
opt
)
{
/* save option */
vshCmdOpt
*
arg
=
malloc
(
sizeof
(
vshCmdOpt
));
if
(
arg
==
NULL
)
{
fprintf
(
stderr
,
"Failed to allocate %d bytes
\n
"
,
(
int
)
sizeof
(
vshCmdOpt
));
exit
(
1
);
}
arg
->
def
=
opt
;
arg
->
data
=
tkdata
;
...
...
@@ -1405,6 +1419,12 @@ vshCommandParse(vshControl * ctl, char *cmdstr)
if
(
cmd
)
{
vshCmd
*
c
=
malloc
(
sizeof
(
vshCmd
));
if
(
c
==
NULL
)
{
fprintf
(
stderr
,
"Failed to allocate %d bytes
\n
"
,
(
int
)
sizeof
(
vshCmd
));
exit
(
1
);
}
c
->
opts
=
first
;
c
->
def
=
cmd
;
c
->
next
=
NULL
;
...
...
@@ -1646,6 +1666,11 @@ vshReadlineOptionsGenerator(const char *text, int state)
continue
;
}
res
=
malloc
(
strlen
(
name
)
+
3
);
if
(
res
==
NULL
)
{
fprintf
(
stderr
,
"Failed to allocate %d bytes
\n
"
,
(
int
)
strlen
(
name
)
+
3
);
exit
(
1
);
}
sprintf
(
res
,
"--%s"
,
name
);
return
res
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录