36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
|
From dd3730f8bdd7afdbc7fb0e9dd200951f9d713a34 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Corentin=20No=C3=ABl?= <corentin.noel@collabora.com>
|
||
|
Date: Thu, 26 Jan 2023 13:25:57 +0100
|
||
|
Subject: [PATCH] kopper: Do not free the given screen in initScreen
|
||
|
implementation
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
The given screen is already freed by the caller in case a NULL-pointer is
|
||
|
returned by the implementation.
|
||
|
|
||
|
Cc: mesa-stable
|
||
|
Signed-off-by: Corentin Noël <corentin.noel@collabora.com>
|
||
|
Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
|
||
|
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20933>
|
||
|
---
|
||
|
src/gallium/frontends/dri/kopper.c | 1 -
|
||
|
1 file changed, 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/gallium/frontends/dri/kopper.c b/src/gallium/frontends/dri/kopper.c
|
||
|
index 8453585b8471..9e8056975150 100644
|
||
|
--- a/src/gallium/frontends/dri/kopper.c
|
||
|
+++ b/src/gallium/frontends/dri/kopper.c
|
||
|
@@ -171,7 +171,6 @@ fail:
|
||
|
dri_destroy_screen_helper(screen);
|
||
|
if (screen->dev)
|
||
|
pipe_loader_release(&screen->dev, 1);
|
||
|
- FREE(screen);
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
GitLab
|
||
|
|