mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-07 07:38:04 +02:00
freedreno/msm: remove dead error path
`ring` cannot be non-null, so the label reduces to a simple return. Then, there is no point initialising `ring` just to overwrite it before anyone reads it. Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
ac2b806c45
commit
6338e452c9
1 changed files with 2 additions and 6 deletions
|
|
@ -589,12 +589,12 @@ drm_private struct fd_ringbuffer * msm_ringbuffer_new(struct fd_pipe *pipe,
|
|||
uint32_t size)
|
||||
{
|
||||
struct msm_ringbuffer *msm_ring;
|
||||
struct fd_ringbuffer *ring = NULL;
|
||||
struct fd_ringbuffer *ring;
|
||||
|
||||
msm_ring = calloc(1, sizeof(*msm_ring));
|
||||
if (!msm_ring) {
|
||||
ERROR_MSG("allocation failed");
|
||||
goto fail;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (size == 0) {
|
||||
|
|
@ -614,8 +614,4 @@ drm_private struct fd_ringbuffer * msm_ringbuffer_new(struct fd_pipe *pipe,
|
|||
ring_cmd_new(ring, size);
|
||||
|
||||
return ring;
|
||||
fail:
|
||||
if (ring)
|
||||
fd_ringbuffer_del(ring);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue