mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 21:20:14 +01:00
vdpau: fix a maybe-uninitialized warning
This commit is contained in:
parent
65732a8ff6
commit
bb2e05885d
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,7 @@ vlVdpPresentationQueueDisplay(VdpPresentationQueue presentation_queue,
|
|||
|
||||
struct pipe_context *pipe;
|
||||
struct pipe_resource *tex;
|
||||
struct pipe_surface surf_templ, *surf_draw;
|
||||
struct pipe_surface surf_templ, *surf_draw = NULL;
|
||||
struct u_rect src_rect, dst_clip, *dirty_area;
|
||||
|
||||
struct vl_compositor *compositor;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue