Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
eeaa15b6
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看板
提交
eeaa15b6
编写于
9月 24, 2012
作者:
R
Richard W.M. Jones
提交者:
Cole Robinson
10月 17, 2012
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
command: Change virCommandAddEnv so it replaces existing environment variables.
(cherry picked from commit
2b32735a
)
上级
94090184
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
16 addition
and
1 deletion
+16
-1
src/util/command.c
src/util/command.c
+16
-1
未找到文件。
src/util/command.c
浏览文件 @
eeaa15b6
...
...
@@ -985,11 +985,26 @@ virCommandNonblockingFDs(virCommandPtr cmd)
}
/* Add an environment variable to the cmd->env list. 'env' is a
* string like "name=value".
* string like "name=value". If the named environment variable is
* already set, then it is replaced in the list.
*/
static
inline
void
virCommandAddEnv
(
virCommandPtr
cmd
,
char
*
env
)
{
size_t
namelen
;
size_t
i
;
/* Search for the name in the existing environment. */
namelen
=
strcspn
(
env
,
"="
);
for
(
i
=
0
;
i
<
cmd
->
nenv
;
++
i
)
{
/* + 1 because we want to match the '=' character too. */
if
(
STREQLEN
(
cmd
->
env
[
i
],
env
,
namelen
+
1
))
{
VIR_FREE
(
cmd
->
env
[
i
]);
cmd
->
env
[
i
]
=
env
;
return
;
}
}
/* Arg plus trailing NULL. */
if
(
VIR_RESIZE_N
(
cmd
->
env
,
cmd
->
maxenv
,
cmd
->
nenv
,
1
+
1
)
<
0
)
{
VIR_FREE
(
env
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录