mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 11:10:10 +01:00
r300/compiler: fix a warning that a variable may be uninitialized
This commit is contained in:
parent
2f02c2fe56
commit
2ce6c3ea6e
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