From 78572cd690967e8d6a6cd5d1cb429e466ef70220 Mon Sep 17 00:00:00 2001 From: sleeptightAnsiC <91839286+sleeptightAnsiC@users.noreply.github.com> Date: Fri, 28 Feb 2025 18:58:06 +0100 Subject: [PATCH] [rcore] fix crash in InitWindow, due to unchecked result of InitPlatform Check the result of InitPlatform(), if it isn't 0, report the Error and return. This prevent crashes and allows for gracefully aborting or recovering by checking IsWindowReady(). Partially-fixes: https://github.com/raysan5/raylib/issues/4801 --- src/rcore.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index 99aca0059..d3c430ef0 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -681,7 +681,10 @@ void InitWindow(int width, int height, const char *title) // Initialize platform //-------------------------------------------------------------- - InitPlatform(); + if(InitPlatform() != 0) { + TRACELOG(LOG_ERROR, "SYSTEM: Failed to initialize Platform"); + return; + } //-------------------------------------------------------------- // Initialize rlgl default data (buffers and shaders)