Static analysis fix: uninitialized data.
(This is Clang not knowing that SDL_SetError() always returns -1.)
This commit is contained in:
parent
1cf04be2fe
commit
f0639e7060
1 changed files with 2 additions and 0 deletions
|
@ -1128,6 +1128,8 @@ SDL_UpdateFullscreenMode(SDL_Window * window, SDL_bool fullscreen)
|
||||||
if (setDisplayMode) {
|
if (setDisplayMode) {
|
||||||
SDL_DisplayMode fullscreen_mode;
|
SDL_DisplayMode fullscreen_mode;
|
||||||
|
|
||||||
|
SDL_zero(fullscreen_mode);
|
||||||
|
|
||||||
if (SDL_GetWindowDisplayMode(other, &fullscreen_mode) == 0) {
|
if (SDL_GetWindowDisplayMode(other, &fullscreen_mode) == 0) {
|
||||||
SDL_bool resized = SDL_TRUE;
|
SDL_bool resized = SDL_TRUE;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue