Initialize OpenGLCache to nullptr to prevent faulty memory access (thanks Marco S)

This commit is contained in:
Alexander Bock
2021-07-15 16:18:45 +02:00
parent 3069457d67
commit 3025fbc200

View File

@@ -194,7 +194,7 @@ private:
ghoul::Dictionary _resolveData;
ScreenLog* _log = nullptr;
ghoul::opengl::OpenGLStateCache* _openglStateCache;
ghoul::opengl::OpenGLStateCache* _openglStateCache = nullptr;
properties::BoolProperty _showOverlayOnSlaves;
properties::BoolProperty _showLog;