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
df363756
Commit
df363756
authored
Apr 23, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vdpau/chroma: NULL dereference on error
parent
23e14ee5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/hw/vdpau/chroma.c
modules/hw/vdpau/chroma.c
+2
-1
No files found.
modules/hw/vdpau/chroma.c
View file @
df363756
...
@@ -324,6 +324,8 @@ static picture_t *VideoExport(filter_t *filter, picture_t *src, picture_t *dst)
...
@@ -324,6 +324,8 @@ static picture_t *VideoExport(filter_t *filter, picture_t *src, picture_t *dst)
void
*
planes
[
3
];
void
*
planes
[
3
];
uint32_t
pitches
[
3
];
uint32_t
pitches
[
3
];
picture_CopyProperties
(
dst
,
src
);
for
(
int
i
=
0
;
i
<
dst
->
i_planes
;
i
++
)
for
(
int
i
=
0
;
i
<
dst
->
i_planes
;
i
++
)
{
{
planes
[
i
]
=
dst
->
p
[
i
].
p_pixels
;
planes
[
i
]
=
dst
->
p
[
i
].
p_pixels
;
...
@@ -346,7 +348,6 @@ static picture_t *VideoExport(filter_t *filter, picture_t *src, picture_t *dst)
...
@@ -346,7 +348,6 @@ static picture_t *VideoExport(filter_t *filter, picture_t *src, picture_t *dst)
picture_Release
(
dst
);
picture_Release
(
dst
);
dst
=
NULL
;
dst
=
NULL
;
}
}
picture_CopyProperties
(
dst
,
src
);
picture_Release
(
src
);
picture_Release
(
src
);
return
dst
;
return
dst
;
}
}
...
...
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