mirror of
https://github.com/glfw/glfw.git
synced 2025-02-12 11:47:43 +00:00
Fix a maybe-uninitialized warning on GCC 4.9
This commit is contained in:
parent
ca8912375c
commit
a02aeaf972
@ -280,7 +280,7 @@ int _glfwCreateContext(_GLFWwindow* window,
|
|||||||
const _GLFWfbconfig* fbconfig)
|
const _GLFWfbconfig* fbconfig)
|
||||||
{
|
{
|
||||||
int attribs[40];
|
int attribs[40];
|
||||||
GLXFBConfig native;
|
GLXFBConfig native = NULL;
|
||||||
GLXContext share = NULL;
|
GLXContext share = NULL;
|
||||||
|
|
||||||
if (ctxconfig->share)
|
if (ctxconfig->share)
|
||||||
|
Loading…
Reference in New Issue
Block a user