mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 12:28:07 +02:00
tgsi: Silence uninitialized variable warnings.
This commit is contained in:
parent
de37a00d27
commit
20d6360db7
1 changed files with 8 additions and 0 deletions
|
|
@ -1209,11 +1209,19 @@ fetch_src_file_channel(
|
|||
|
||||
default:
|
||||
assert( 0 );
|
||||
chan->u[0] = 0;
|
||||
chan->u[1] = 0;
|
||||
chan->u[2] = 0;
|
||||
chan->u[3] = 0;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
assert( 0 );
|
||||
chan->u[0] = 0;
|
||||
chan->u[1] = 0;
|
||||
chan->u[2] = 0;
|
||||
chan->u[3] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue