mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Coverity #1011: Remove a useless NULL check on a pVbe that had been
dereferenced many times before.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2006-03-10 Eric Anholt <anholt@FreeBSD.org>
|
||||
|
||||
* hw/xfree86/vbe/vbe.c: (vbeProbeDDC):
|
||||
Coverity #1011: Remove a useless NULL check on a pVbe that had
|
||||
been dereferenced many times before.
|
||||
|
||||
2006-03-09 Eric Anholt <anholt@FreeBSD.org>
|
||||
|
||||
* hw/xfree86/int10/generic.c: (xf86ExtendedInitInt10):
|
||||
|
||||
@@ -181,7 +181,7 @@ vbeProbeDDC(vbeInfoPtr pVbe)
|
||||
char *ddc_level;
|
||||
int screen = pVbe->pInt10->scrnIndex;
|
||||
|
||||
if (!pVbe || (pVbe->ddc == DDC_NONE))
|
||||
if (pVbe->ddc == DDC_NONE)
|
||||
return FALSE;
|
||||
if (pVbe->ddc != DDC_UNCHECKED)
|
||||
return TRUE;
|
||||
|
||||
Reference in New Issue
Block a user