mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 13:58:05 +02:00
r300/compiler: fix a warning that a variable may be uninitialized
(cherry picked from commit 2ce6c3ea6e)
This commit is contained in:
parent
d8a0c1b4bc
commit
f69357d77a
1 changed files with 1 additions and 1 deletions
|
|
@ -687,7 +687,7 @@ static void get_readers_for_single_write(
|
|||
struct rc_instruction * tmp;
|
||||
unsigned int branch_depth = 0;
|
||||
struct rc_instruction * endloop = NULL;
|
||||
unsigned int abort_on_read_at_endloop;
|
||||
unsigned int abort_on_read_at_endloop = 0;
|
||||
struct get_readers_callback_data * d = userdata;
|
||||
|
||||
d->ReaderData->Writer = writer;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue