https://bugs.freedesktop.org/show_bug.cgi?id=95456
Bug ID: 95456
Summary: glXGetFBConfigs has invalid screen bounds
Product: Mesa
Version: git
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component: GLX
Assignee: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
Created attachment 123829
--> https://bugs.freedesktop.org/attachment.cgi?id=123829&action=edit
patch
This is bad:
if (priv && (priv->screens != NULL)
&& (screen >= 0) && (screen <= ScreenCount(dpy))
It should write:
if (priv && (priv->screens != NULL)
&& (screen >= 0) && (screen < ScreenCount(dpy))
I have sent a patch to [email protected], but it is moderated and
I am not sure it went through.
--
You are receiving this mail because:
You are the assignee for the bug.
You are the QA Contact for the bug._______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev