Static analysis fix: let clang know _this->displays isn't NULL.
parent
415675bef0
commit
b99a6253da
|
@ -115,6 +115,7 @@ static SDL_VideoDevice *_this = NULL;
|
||||||
SDL_UninitializedVideo(); \
|
SDL_UninitializedVideo(); \
|
||||||
return retval; \
|
return retval; \
|
||||||
} \
|
} \
|
||||||
|
SDL_assert(_this->displays != NULL); \
|
||||||
if (displayIndex < 0 || displayIndex >= _this->num_displays) { \
|
if (displayIndex < 0 || displayIndex >= _this->num_displays) { \
|
||||||
SDL_SetError("displayIndex must be in the range 0 - %d", \
|
SDL_SetError("displayIndex must be in the range 0 - %d", \
|
||||||
_this->num_displays - 1); \
|
_this->num_displays - 1); \
|
||||||
|
|
Loading…
Reference in New Issue