Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
b6d354c5
S
Startup Init Lite
项目概览
OpenHarmony
/
Startup Init Lite
1 年多 前同步成功
通知
3
Star
37
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Startup Init Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b6d354c5
编写于
6月 13, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 13, 2022
浏览文件
操作
浏览文件
下载
差异文件
!784 修复 sandbox中解析json配置文件内存泄漏的问题
Merge pull request !784 from Mupceet/init0610_1
上级
14d5b829
38667e27
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
23 addition
and
31 deletion
+23
-31
interfaces/innerkits/sandbox/sandbox.c
interfaces/innerkits/sandbox/sandbox.c
+23
-31
未找到文件。
interfaces/innerkits/sandbox/sandbox.c
浏览文件 @
b6d354c5
...
...
@@ -252,53 +252,35 @@ static int GetSandboxInfo(sandbox_t *sandbox, cJSON *root, const char *itemName)
return
0
;
}
static
int
ParseSandboxConfig
(
sandbox_t
*
sandbox
,
const
char
*
sandboxConfig
)
static
int
ParseSandboxConfig
(
cJSON
*
root
,
sandbox_t
*
sandbox
)
{
if
(
sandbox
==
NULL
||
sandboxConfig
==
NULL
)
{
BEGET_LOGE
(
"Parse sandbox config with invalid argument"
);
return
-
1
;
}
char
*
contents
=
ReadFileToBuf
(
sandboxConfig
);
if
(
contents
==
NULL
)
{
return
-
1
;
}
cJSON
*
root
=
cJSON_Parse
(
contents
);
if
(
root
==
NULL
)
{
BEGET_LOGE
(
"Parse sandbox config
\'
%s
\'
failed"
,
sandboxConfig
);
if
((
root
==
NULL
)
||
(
sandbox
==
NULL
))
{
BEGET_LOGE
(
"Invaild parameter."
);
return
-
1
;
}
cJSON
*
sandboxRoot
=
cJSON_GetObjectItem
(
root
,
SANDBOX_ROOT_TAG
);
if
(
sandboxRoot
==
NULL
)
{
BEGET_LOGE
(
"Cannot find item
\'
%s
\'
in sandbox config"
,
SANDBOX_ROOT_TAG
);
cJSON_Delete
(
root
);
return
-
1
;
}
BEGET_ERROR_CHECK
(
sandboxRoot
!=
NULL
,
return
-
1
,
"Cannot find item
\'
%s
\'
in sandbox config"
,
SANDBOX_ROOT_TAG
);
char
*
rootdir
=
cJSON_GetStringValue
(
sandboxRoot
);
if
(
rootdir
!=
NULL
)
{
sandbox
->
rootPath
=
strdup
(
rootdir
);
if
(
sandbox
->
rootPath
==
NULL
)
{
BEGET_LOGE
(
"Get sandbox root path out of memory"
);
cJSON_Delete
(
root
);
return
-
1
;
}
BEGET_ERROR_CHECK
(
sandbox
->
rootPath
!=
NULL
,
return
-
1
,
"Get sandbox root path out of memory"
);
}
BEGET_LOGI
(
"config file %s"
,
sandboxConfig
);
if
(
GetSandboxInfo
(
sandbox
,
root
,
SANDBOX_MOUNT_PATH_TAG
)
<
0
)
{
BEGET_LOGE
(
"config file %s, SANDBOX_MOUNT_PATH_TAG error"
,
sandboxConfig
);
cJSON_Delete
(
root
);
BEGET_LOGE
(
"config info %s error"
,
SANDBOX_MOUNT_PATH_TAG
);
return
-
1
;
}
if
(
GetSandboxInfo
(
sandbox
,
root
,
SANDBOX_MOUNT_FILE_TAG
)
<
0
)
{
BEGET_LOGE
(
"config file %s, SANDBOX_MOUNT_FILE_TAG error"
,
sandboxConfig
);
cJSON_Delete
(
root
);
BEGET_LOGE
(
"config info %s error"
,
SANDBOX_MOUNT_FILE_TAG
);
return
-
1
;
}
if
(
GetSandboxInfo
(
sandbox
,
root
,
SANDBOX_SYMLINK_TAG
)
<
0
)
{
BEGET_LOGE
(
"config file %s, SANDBOX_SYMLINK_TAG error"
,
sandboxConfig
);
cJSON_Delete
(
root
);
BEGET_LOGE
(
"config info %s error"
,
SANDBOX_SYMLINK_TAG
);
return
-
1
;
}
cJSON_Delete
(
root
);
return
0
;
}
...
...
@@ -342,7 +324,17 @@ static void InitSandbox(sandbox_t *sandbox, const char *sandboxConfig, const cha
}
// parse json config
if
(
ParseSandboxConfig
(
sandbox
,
sandboxConfig
)
<
0
)
{
char
*
contents
=
ReadFileToBuf
(
sandboxConfig
);
if
(
contents
==
NULL
)
{
return
;
}
cJSON
*
root
=
cJSON_Parse
(
contents
);
free
(
contents
);
BEGET_ERROR_CHECK
(
root
!=
NULL
,
return
,
"Parse sandbox config
\'
%s
\'
failed"
,
sandboxConfig
);
int
ret
=
ParseSandboxConfig
(
root
,
sandbox
);
cJSON_Delete
(
root
);
if
(
ret
<
0
)
{
DestroySandbox
(
name
);
return
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录