diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2006-06-26 03:26:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 12:58:31 -0400 |
commit | 17cc6281c12b26425209c58e3d8825a9568db3cc (patch) | |
tree | ad5d9b0dc35765e7d2ae8c7d53784531ba1e690f /drivers/video | |
parent | 8126a044f9e686f4ecf95e32fd89ad1dd48b4183 (diff) |
[PATCH] fbdev: Coverity Bug 90
It's a false positive, but let's suppress it anyway.
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/modedb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/video/modedb.c b/drivers/video/modedb.c index 1aa36d302a51..7e539b69a9a2 100644 --- a/drivers/video/modedb.c +++ b/drivers/video/modedb.c | |||
@@ -791,8 +791,9 @@ struct fb_videomode *fb_find_best_mode(struct fb_var_screeninfo *var, | |||
791 | if (diff > d) { | 791 | if (diff > d) { |
792 | diff = d; | 792 | diff = d; |
793 | best = mode; | 793 | best = mode; |
794 | } else if (diff == d && mode->refresh > best->refresh) | 794 | } else if (diff == d && best && |
795 | best = mode; | 795 | mode->refresh > best->refresh) |
796 | best = mode; | ||
796 | } | 797 | } |
797 | } | 798 | } |
798 | return best; | 799 | return best; |