st/nine: Remove unnecessary NULL check.

resource cannot be NULL at this point since it has already been
dereferenced earlier.

Fix defect reported by Coverity Scan.

Dereference before null check (REVERSE_INULL)
check_after_deref: Null-checking resource suggests that it may be
null, but it has already been dereferenced on all paths leading to
the check.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Axel Davy <davyaxel0@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7343>
This commit is contained in:
Vinson Lee 2020-10-27 15:46:26 -07:00
parent 0bc222706d
commit 39d1576eef
1 changed files with 1 additions and 2 deletions

View File

@ -834,8 +834,7 @@ NineSurface9_SetResourceResize( struct NineSurface9 *This,
pipe_surface_reference(&This->surface[0], NULL);
pipe_surface_reference(&This->surface[1], NULL);
if (resource)
NineSurface9_CreatePipeSurfaces(This);
NineSurface9_CreatePipeSurfaces(This);
}