diff options
-rw-r--r-- | src/lg_driver.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lg_driver.c b/src/lg_driver.c index be8963a..1042030 100644 --- a/src/lg_driver.c +++ b/src/lg_driver.c @@ -360,6 +360,12 @@ LgDoDDC(ScrnInfoPtr pScrn) * Read and output monitor info using DDC2 over I2C bus. */ MonInfo = xf86DoEDID_DDC2(XF86_SCRN_ARG(pScrn), pCir->I2CPtr1); + if (!MonInfo) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "Failed to obtain EDID.\n"); + goto unmap_out; + } + xf86DrvMsg(pScrn->scrnIndex, X_INFO, "I2C Monitor info: %p\n", (void *)MonInfo); xf86PrintEDID(MonInfo); |