i965/drm: Delete NULL check in brw_bo_unmap().
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 12 Apr 2017 16:30:48 +0000 (09:30 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Mon, 17 Apr 2017 05:58:23 +0000 (22:58 -0700)
commit7c3b8ed87859bfdfb985d21685115a729f9cd138
treef5d0147d44d9255f4020e36c9a0352783c0f4161
parent9b71709cb8532cda4bfbbcbf4d0d86d53c0dffb9
i965/drm: Delete NULL check in brw_bo_unmap().

I accidentally moved the bo->bufmgr dereference above the NULL check
when cleaning up this code.

While passing NULL to free() is a common pattern...passing NULL to
unmap seems pretty bad.  You really ought to know whether you have
a buffer or not.  We don't want to paper over bugs like that.  So,
just drop the NULL check altogether.

CID: 1405006

Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
src/mesa/drivers/dri/i965/brw_bufmgr.c