From 10ffcbb115ac3c34d2c7135a0ab755b25d672657 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Mon, 22 Nov 2021 16:41:45 +0100 Subject: [PATCH] QNX: use SDL_malloc --- src/video/qnx/gl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video/qnx/gl.c b/src/video/qnx/gl.c index 19e1bd4f7..1862ab425 100644 --- a/src/video/qnx/gl.c +++ b/src/video/qnx/gl.c @@ -85,7 +85,7 @@ glGetConfig(EGLConfig *pconf, int *pformat) } // Allocate enough memory for all configurations. - egl_configs = malloc(egl_num_configs * sizeof(*egl_configs)); + egl_configs = SDL_malloc(egl_num_configs * sizeof(*egl_configs)); if (egl_configs == NULL) { return -1; } @@ -94,7 +94,7 @@ glGetConfig(EGLConfig *pconf, int *pformat) rc = eglGetConfigs(egl_disp, egl_configs, egl_num_configs, &egl_num_configs); if (rc != EGL_TRUE) { - free(egl_configs); + SDL_free(egl_configs); return -1; } @@ -119,7 +119,7 @@ glGetConfig(EGLConfig *pconf, int *pformat) break; } - free(egl_configs); + SDL_free(egl_configs); *pconf = egl_conf; *pformat = chooseFormat(egl_conf);