svn commit: r198332 - head/sys/dev/drm
Christian Brueffer
brueffer at FreeBSD.org
Wed Oct 21 15:54:45 UTC 2009
Author: brueffer
Date: Wed Oct 21 15:54:45 2009
New Revision: 198332
URL: http://svn.freebsd.org/changeset/base/198332
Log:
Check pointer for NULL before dereferencing it, not after.
PR: 138383
Submitted by: Patroklos Argyroudis <argp at census-labs.com>
Reviewed by: rnoland
MFC after: 1 week
Modified:
head/sys/dev/drm/mach64_state.c
Modified: head/sys/dev/drm/mach64_state.c
==============================================================================
--- head/sys/dev/drm/mach64_state.c Wed Oct 21 15:27:48 2009 (r198331)
+++ head/sys/dev/drm/mach64_state.c Wed Oct 21 15:54:45 2009 (r198332)
@@ -826,7 +826,7 @@ int mach64_dma_vertex(struct drm_device
struct drm_file *file_priv)
{
drm_mach64_private_t *dev_priv = dev->dev_private;
- drm_mach64_sarea_t *sarea_priv = dev_priv->sarea_priv;
+ drm_mach64_sarea_t *sarea_priv;
drm_mach64_vertex_t *vertex = data;
LOCK_TEST_WITH_RETURN(dev, file_priv);
@@ -835,6 +835,7 @@ int mach64_dma_vertex(struct drm_device
DRM_ERROR("called with no initialization\n");
return -EINVAL;
}
+ sarea_priv = dev_priv->sarea_priv;
DRM_DEBUG("pid=%d buf=%p used=%lu discard=%d\n",
DRM_CURRENTPID,
More information about the svn-src-all
mailing list