Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
linphone-desktop
Commits
0976075b
Commit
0976075b
authored
Mar 12, 2018
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(FileExtractor): check ptr after open
parent
70f4ee2a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
FileExtractor.cpp
src/components/file/FileExtractor.cpp
+3
-1
No files found.
src/components/file/FileExtractor.cpp
View file @
0976075b
...
@@ -35,7 +35,9 @@ static int openMinizipStream (void **stream, const char *filePath) {
...
@@ -35,7 +35,9 @@ static int openMinizipStream (void **stream, const char *filePath) {
*
stream
=
nullptr
;
*
stream
=
nullptr
;
if
(
!
mz_stream_bzip_create
(
stream
))
if
(
!
mz_stream_bzip_create
(
stream
))
return
MZ_MEM_ERROR
;
return
MZ_MEM_ERROR
;
return
mz_stream_bzip_open
(
stream
,
filePath
,
MZ_OPEN_MODE_READ
);
Q_CHECK_PTR
(
*
stream
);
qInfo
()
<<
QStringLiteral
(
"Opening `%1`..."
).
arg
(
filePath
);
return
mz_stream_bzip_open
(
*
stream
,
filePath
,
MZ_OPEN_MODE_READ
);
}
}
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
...
...
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