i965: check pointer before dereferencing it
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>
Thu, 13 Jul 2017 15:11:40 +0000 (16:11 +0100)
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>
Thu, 13 Jul 2017 21:50:35 +0000 (22:50 +0100)
Check that irb isn't NULL before accessing irb->Base.Base.NumSamples.

CID: 1026046
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
src/mesa/drivers/dri/i965/intel_tex_copy.c

index e0d5cadb6f63ba033b4281a967c5744939c2e07b..4fe3585296dbb4a23b12b7c35ccaef3ea97181f9 100644 (file)
@@ -52,6 +52,13 @@ intel_copy_texsubimage(struct brw_context *brw,
 {
    const GLenum internalFormat = intelImage->base.Base.InternalFormat;
 
+   if (!intelImage->mt || !irb || !irb->mt) {
+      if (unlikely(INTEL_DEBUG & DEBUG_PERF))
+        fprintf(stderr, "%s fail %p %p (0x%08x)\n",
+                __func__, intelImage->mt, irb, internalFormat);
+      return false;
+   }
+
    /* No pixel transfer operations (zoom, bias, mapping), just a blit */
    if (brw->ctx._ImageTransferState)
       return false;
@@ -69,13 +76,6 @@ intel_copy_texsubimage(struct brw_context *brw,
    /* glCopyTexSubImage() can't be called on a multisampled texture. */
    assert(intelImage->base.Base.NumSamples == 0);
 
-   if (!intelImage->mt || !irb || !irb->mt) {
-      if (unlikely(INTEL_DEBUG & DEBUG_PERF))
-        fprintf(stderr, "%s fail %p %p (0x%08x)\n",
-                __func__, intelImage->mt, irb, internalFormat);
-      return false;
-   }
-
    /* account for view parameters and face index */
    int dst_level = intelImage->base.Base.Level +
                    intelImage->base.Base.TexObject->MinLevel;