Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1404547f authored by Christian König's avatar Christian König Committed by Dave Airlie
Browse files

drm/radeon: fix uninitialized variable



Without this fix the driver randomly treats
textures as arrays and I'm really wondering
why gcc isn't complaining about it.

Signed-off-by: default avatarChristian König <deathsimple@vodafone.de>
Reviewed-by: default avatarJerome Glisse <jglisse@redhat.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent b9b35156
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1304,6 +1304,7 @@ static int r600_check_texture_resource(struct radeon_cs_parser *p, u32 idx,
	h0 = G_038004_TEX_HEIGHT(word1) + 1;
	d0 = G_038004_TEX_DEPTH(word1);
	nfaces = 1;
	array = 0;
	switch (G_038000_DIM(word0)) {
	case V_038000_SQ_TEX_DIM_1D:
	case V_038000_SQ_TEX_DIM_2D: