ui/sdl2: Check return value from g_setenv()
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 9 Aug 2021 16:14:24 +0000 (17:14 +0100)
committerGerd Hoffmann <kraxel@redhat.com>
Tue, 10 Aug 2021 08:56:39 +0000 (10:56 +0200)
Setting environment variables can fail; check the return value
from g_setenv() and bail out if we couldn't set SDL_VIDEODRIVER.

Fixes: Coverity 1458798
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20210809161424.32355-1-peter.maydell@linaro.org>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
ui/sdl2.c

index 36d9010cb6c1ec978c2a26898c5d4d6cfa869031..17c0ec30ebff695c774eb7784c73d78dc3be517b 100644 (file)
--- a/ui/sdl2.c
+++ b/ui/sdl2.c
@@ -817,7 +817,10 @@ static void sdl2_display_init(DisplayState *ds, DisplayOptions *o)
      * This is a bit hackish but saves us from bigger problem.
      * Maybe it's a good idea to fix this in SDL instead.
      */
-    g_setenv("SDL_VIDEODRIVER", "x11", 0);
+    if (!g_setenv("SDL_VIDEODRIVER", "x11", 0)) {
+        fprintf(stderr, "Could not set SDL_VIDEODRIVER environment variable\n");
+        exit(1);
+    }
 #endif
 
     if (SDL_Init(SDL_INIT_VIDEO)) {