On 12/02/2013 02:39 AM, Juha-Pekka Heikkila wrote:
Signed-off-by: Juha-Pekka Heikkila <[email protected]> --- src/glx/clientattrib.c | 5 +++++ 1 file changed, 5 insertions(+)diff --git a/src/glx/clientattrib.c b/src/glx/clientattrib.c index 1b306ea..a26906f 100644 --- a/src/glx/clientattrib.c +++ b/src/glx/clientattrib.c @@ -76,6 +76,11 @@ __indirect_glPushClientAttrib(GLuint mask) if (spp < &gc->attributes.stack[__GL_CLIENT_ATTRIB_STACK_DEPTH]) { if (!(sp = *spp)) { sp = malloc(sizeof(__GLXattribute)); + + if (sp == NULL) { + __glXSetError(gc, GL_OUT_OF_MEMORY); + return; + } *spp = sp; } sp->mask = mask;
Reviewed-by: Brian Paul <[email protected]> Need someone to push this for you? _______________________________________________ mesa-dev mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-dev
