summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2017-06-30 10:59:15 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-11-08 10:08:32 +0100
commit8b2653de6f78741b6e5217fc74b538a7f67f1a82 (patch)
tree5ec4f067ad0ad12be52d1cffc73eda233f19afd4 /samples
parent06bf74cdbdbeb0035c337f5fd090b15d99e690c4 (diff)
drm/msm: fix an integer overflow test
commit 65e93108891e571f177c202add9288eda9ac4100 upstream. We recently added an integer overflow check but it needs an additional tweak to work properly on 32 bit systems. The problem is that we're doing the right hand side of the assignment as type unsigned long so the max it will have an integer overflow instead of being larger than SIZE_MAX. That means the "sz > SIZE_MAX" condition is never true even on 32 bit systems. We need to first cast it to u64 and then do the math. Fixes: 4a630fadbb29 ("drm/msm: Fix potential buffer overflow issue") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Jordan Crouse <jcrouse@codeaurora.org> Signed-off-by: Rob Clark <robdclark@gmail.com> Cc: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'samples')
0 files changed, 0 insertions, 0 deletions