Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
ffa6a2fa
Commit
ffa6a2fa
authored
Feb 15, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Png: compatibility with libpng 1.4
Patch probably from arekm -- pld-linux . org
parent
b21ac035
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/codec/png.c
modules/codec/png.c
+2
-2
No files found.
modules/codec/png.c
View file @
ffa6a2fa
...
@@ -152,7 +152,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -152,7 +152,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
p_info
=
png_create_info_struct
(
p_png
);
p_info
=
png_create_info_struct
(
p_png
);
if
(
p_info
==
NULL
)
if
(
p_info
==
NULL
)
{
{
png_destroy_read_struct
(
&
p_png
,
png_infopp_NULL
,
png_infopp_
NULL
);
png_destroy_read_struct
(
&
p_png
,
NULL
,
NULL
);
block_Release
(
p_block
);
*
pp_block
=
NULL
;
block_Release
(
p_block
);
*
pp_block
=
NULL
;
return
NULL
;
return
NULL
;
}
}
...
@@ -160,7 +160,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -160,7 +160,7 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
p_end_info
=
png_create_info_struct
(
p_png
);
p_end_info
=
png_create_info_struct
(
p_png
);
if
(
p_end_info
==
NULL
)
if
(
p_end_info
==
NULL
)
{
{
png_destroy_read_struct
(
&
p_png
,
&
p_info
,
png_infopp_
NULL
);
png_destroy_read_struct
(
&
p_png
,
&
p_info
,
NULL
);
block_Release
(
p_block
);
*
pp_block
=
NULL
;
block_Release
(
p_block
);
*
pp_block
=
NULL
;
return
NULL
;
return
NULL
;
}
}
...
...
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