mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
glx: Fix error message when no driverName is available
Just provide a "(null)" literal in case driverName is NULL.
In file included from ../src/glx/dri3_glx.c:76:
../src/glx/dri3_glx.c: In function ‘dri3_create_screen’:
../src/glx/dri_common.h:70:36: error: ‘%s’ directive argument is null [-Werror=format-overflow=]
70 | #define CriticalErrorMessageF(...) dri_message(_LOADER_FATAL, __VA_ARGS__)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/glx/dri3_glx.c:1002:4: note: in expansion of macro ‘CriticalErrorMessageF’
1002 | CriticalErrorMessageF("failed to load driver: %s\n", driverName);
| ^~~~~~~~~~~~~~~~~~~~~
../src/glx/dri3_glx.c:1002:50: note: format string is defined here
1002 | CriticalErrorMessageF("failed to load driver: %s\n", driverName);
| ^~
cc1: some warnings being treated as errors
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
65439291a0
commit
04e8ff8595
1 changed files with 1 additions and 1 deletions
|
|
@ -999,7 +999,7 @@ dri3_create_screen(int screen, struct glx_display * priv)
|
|||
return &psc->base;
|
||||
|
||||
handle_error:
|
||||
CriticalErrorMessageF("failed to load driver: %s\n", driverName);
|
||||
CriticalErrorMessageF("failed to load driver: %s\n", driverName ? driverName : "(null)");
|
||||
|
||||
if (configs)
|
||||
glx_config_destroy_list(configs);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue