diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-11-02 23:31:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-11-02 23:31:02 +0300 |
commit | b86f75e0faf7d646d5414cb6a6893bbb07131315 (patch) | |
tree | 8ef56e73470affc1977d7da82bcba133a5e8cd95 /src/render/modernopenglgraphics.cpp | |
parent | afedfd380a9b7d7c7917ba5e8cf20e994a1c0728 (diff) | |
download | plus-b86f75e0faf7d646d5414cb6a6893bbb07131315.tar.gz plus-b86f75e0faf7d646d5414cb6a6893bbb07131315.tar.bz2 plus-b86f75e0faf7d646d5414cb6a6893bbb07131315.tar.xz plus-b86f75e0faf7d646d5414cb6a6893bbb07131315.zip |
Add some missing checks in renderers.
Diffstat (limited to 'src/render/modernopenglgraphics.cpp')
-rw-r--r-- | src/render/modernopenglgraphics.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/render/modernopenglgraphics.cpp b/src/render/modernopenglgraphics.cpp index 9f3bd9809..e544254b4 100644 --- a/src/render/modernopenglgraphics.cpp +++ b/src/render/modernopenglgraphics.cpp @@ -797,6 +797,8 @@ void ModernOpenGLGraphics::calcWindow(ImageCollection *const vertCol, return; ImageVertexes *vert = nullptr; const Image *const image = imgRect.grid[4]; + if (!image) + return; if (vertCol->currentGLImage != image->mGLImage) { vert = new ImageVertexes(); |