mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 21:17:54 +00:00
[client] fix buffer overflow in opengl_options
buffer overflow loading opengl_options
This commit is contained in:
parent
b953b2b807
commit
94a35a6558
1 changed files with 2 additions and 1 deletions
|
@ -77,7 +77,8 @@ static struct Option opengl_options[] =
|
||||||
.description = "Use GL_AMD_pinned_memory if it is available",
|
.description = "Use GL_AMD_pinned_memory if it is available",
|
||||||
.type = OPTION_TYPE_BOOL,
|
.type = OPTION_TYPE_BOOL,
|
||||||
.value.x_bool = true
|
.value.x_bool = true
|
||||||
}
|
},
|
||||||
|
{0}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct OpenGL_Options
|
struct OpenGL_Options
|
||||||
|
|
Loading…
Reference in a new issue