mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
qxl: check for kmap failures
commitf4cceb2affupstream. If kmap fails, it leads to memory corruption. Fixes:f64122c1f6('drm: add new QXL driver. (v1.4)') Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/20160711084633.GA31411@mwanda Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
97f9aa7c02
commit
69b10e10f5
|
|
@ -136,6 +136,8 @@ static int qxl_palette_create_1bit(struct qxl_bo *palette_bo,
|
|||
* correctly globaly, since that would require
|
||||
* tracking all of our palettes. */
|
||||
ret = qxl_bo_kmap(palette_bo, (void **)&pal);
|
||||
if (ret)
|
||||
return ret;
|
||||
pal->num_ents = 2;
|
||||
pal->unique = unique++;
|
||||
if (visual == FB_VISUAL_TRUECOLOR || visual == FB_VISUAL_DIRECTCOLOR) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user