Coverity #1005: Avoid a null deref.

This commit is contained in:
Adam Jackson 2006-04-14 23:09:38 +00:00
parent d01e0956a8
commit ab1d420022
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-04-14 Adam Jackson <ajax@freedesktop.org>
* hw/dmx/input/dmxconsole.c:
Coverity #1005: Avoid a null deref.
2006-04-14 Adam Jackson <ajax@freedesktop.org>
* hw/dmx/input/dmxinputinit.c:

View File

@ -696,10 +696,11 @@ static void dmxConsoleComputeWidthHeight(myPrivate *priv,
void dmxConsoleReInit(DevicePtr pDev)
{
GETPRIVFROMPDEV;
Display *dpy = priv->display;
Display *dpy;
if (!priv || !priv->initialized) return;
dpy = priv->display;
dmxConsoleComputeWidthHeight(priv,
&priv->width, &priv->height,
&priv->xScale, &priv->yScale,