]> Git Repo - linux.git/commit
kasan: avoid -Wmaybe-uninitialized warning
authorArnd Bergmann <[email protected]>
Wed, 2 Aug 2017 20:31:58 +0000 (13:31 -0700)
committerLinus Torvalds <[email protected]>
Wed, 2 Aug 2017 23:34:46 +0000 (16:34 -0700)
commite7701557bfdd81ff44cab13a80439319a735d8e2
tree0b21626e2c44e58dbf883f462a01027988baa13f
parentb22823719302e88d0e2a6bb06433bd97b175a8d8
kasan: avoid -Wmaybe-uninitialized warning

gcc-7 produces this warning:

  mm/kasan/report.c: In function 'kasan_report':
  mm/kasan/report.c:351:3: error: 'info.first_bad_addr' may be used uninitialized in this function [-Werror=maybe-uninitialized]
     print_shadow_for_address(info->first_bad_addr);
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  mm/kasan/report.c:360:27: note: 'info.first_bad_addr' was declared here

The code seems fine as we only print info.first_bad_addr when there is a
shadow, and we always initialize it in that case, but this is relatively
hard for gcc to figure out after the latest rework.

Adding an intialization to the most likely value together with the other
struct members shuts up that warning.

Fixes: b235b9808664 ("kasan: unify report headers")
Link: https://patchwork.kernel.org/patch/9641417/
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnd Bergmann <[email protected]>
Suggested-by: Alexander Potapenko <[email protected]>
Suggested-by: Andrey Ryabinin <[email protected]>
Acked-by: Andrey Ryabinin <[email protected]>
Cc: Dmitry Vyukov <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/kasan/report.c
This page took 0.052444 seconds and 4 git commands to generate.