[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1413031067-26961-1-git-send-email-henning@hennsch.de>
Date: Sat, 11 Oct 2014 14:37:47 +0200
From: Henning Schild <henning@...nsch.de>
To: linux-kernel@...r.kernel.org
Cc: Henning Schild <henning@...nsch.de>,
Alex Deucher <alexander.deucher@....com>,
Rafał Miłecki <zajec5@...il.com>
Subject: [PATCH] drm/radeon: fix dangling pointer kfree
If drm_edid_to_speaker_allocation returns a count of 0 sadb is not
initialized and should not get kfreed. Bail out like the other two
callers.
Signed-off-by: Henning Schild <henning@...nsch.de>
---
drivers/gpu/drm/radeon/dce3_1_afmt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/radeon/dce3_1_afmt.c b/drivers/gpu/drm/radeon/dce3_1_afmt.c
index 51800e3..cb76074 100644
--- a/drivers/gpu/drm/radeon/dce3_1_afmt.c
+++ b/drivers/gpu/drm/radeon/dce3_1_afmt.c
@@ -48,7 +48,7 @@ static void dce3_2_afmt_write_speaker_allocation(struct drm_encoder *encoder)
}
sad_count = drm_edid_to_speaker_allocation(radeon_connector->edid, &sadb);
- if (sad_count < 0) {
+ if (sad_count <= 0) {
DRM_ERROR("Couldn't read Speaker Allocation Data Block: %d\n", sad_count);
return;
}
--
2.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists