Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Administrator
Magisk
Commits
a7435dad
Commit
a7435dad
authored
Jan 12, 2020
by
osm0sis
Committed by
John Wu
Jan 31, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
magiskboot: fix lzop detection
parent
793f0b60
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
compress.cpp
native/jni/magiskboot/compress.cpp
+2
-2
No files found.
native/jni/magiskboot/compress.cpp
View file @
a7435dad
...
@@ -563,11 +563,11 @@ void decompress(char *infile, const char *outfile) {
...
@@ -563,11 +563,11 @@ void decompress(char *infile, const char *outfile) {
if
(
!
strm
)
{
if
(
!
strm
)
{
format_t
type
=
check_fmt
(
buf
,
len
);
format_t
type
=
check_fmt
(
buf
,
len
);
fprintf
(
stderr
,
"Detected format: [%s]
\n
"
,
fmt2name
[
type
]);
if
(
!
COMPRESSED
(
type
))
if
(
!
COMPRESSED
(
type
))
LOGE
(
"Input file is not a supported compressed type!
\n
"
);
LOGE
(
"Input file is not a supported compressed type!
\n
"
);
fprintf
(
stderr
,
"Detected format: [%s]
\n
"
,
fmt2name
[
type
]);
/* If user does not provide outfile, infile has to be either
/* If user does not provide outfile, infile has to be either
* <path>.[ext], or '-'. Outfile will be either <path> or '-'.
* <path>.[ext], or '-'. Outfile will be either <path> or '-'.
* If the input does not have proper format, abort */
* If the input does not have proper format, abort */
...
...
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