From bc36f5ff27d1bd226cf94612325949218562ea93 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 26 Apr 2022 22:42:54 +0200 Subject: [PATCH] Fix buffer overflow. --- profiler/src/imgui_impl_opengl3_loader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/imgui_impl_opengl3_loader.h b/profiler/src/imgui_impl_opengl3_loader.h index bffc6717..17b88bb5 100644 --- a/profiler/src/imgui_impl_opengl3_loader.h +++ b/profiler/src/imgui_impl_opengl3_loader.h @@ -444,7 +444,7 @@ GL3W_API GL3WglProc imgl3wGetProcAddress(const char *proc); /* gl3w internal state */ union GL3WProcs { - GL3WglProc ptr[53]; + GL3WglProc ptr[55]; struct { PFNGLACTIVETEXTUREPROC ActiveTexture; PFNGLATTACHSHADERPROC AttachShader;