Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
apk-tools
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
39
Issues
39
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
apk-tools
Commits
bcb4b06f
Commit
bcb4b06f
authored
Mar 13, 2017
by
Natanael Copa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
db: catch asprintf failure
parent
93d6b2b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
database.c
src/database.c
+2
-1
No files found.
src/database.c
View file @
bcb4b06f
...
@@ -1576,7 +1576,8 @@ int apk_db_open(struct apk_database *db, struct apk_db_options *dbopts)
...
@@ -1576,7 +1576,8 @@ int apk_db_open(struct apk_database *db, struct apk_db_options *dbopts)
apk_blob_to_file
(
db
->
root_fd
,
apk_arch_file
,
*
db
->
arch
,
APK_BTF_ADD_EOL
);
apk_blob_to_file
(
db
->
root_fd
,
apk_arch_file
,
*
db
->
arch
,
APK_BTF_ADD_EOL
);
/* mount /proc */
/* mount /proc */
asprintf
(
&
db
->
root_proc_dir
,
"%s/proc"
,
dbopts
->
root
);
if
(
asprintf
(
&
db
->
root_proc_dir
,
"%s/proc"
,
dbopts
->
root
)
==
-
1
)
goto
ret_errno
;
if
(
statfs
(
db
->
root_proc_dir
,
&
stfs
)
!=
0
)
{
if
(
statfs
(
db
->
root_proc_dir
,
&
stfs
)
!=
0
)
{
if
(
errno
==
ENOENT
)
mkdir
(
db
->
root_proc_dir
,
0555
);
if
(
errno
==
ENOENT
)
mkdir
(
db
->
root_proc_dir
,
0555
);
stfs
.
f_type
=
0
;
stfs
.
f_type
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment