[Mesa-dev] [PATCH 09/11] glapi/glx: Sync some additional error checking from xserver

Adam Jackson ajax at redhat.com
Thu Mar 24 18:10:04 UTC 2016


Signed-off-by: Adam Jackson <ajax at redhat.com>
---
 src/mapi/glapi/gen/glX_proto_recv.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/mapi/glapi/gen/glX_proto_recv.py b/src/mapi/glapi/gen/glX_proto_recv.py
index 21b187c..a138adb 100644
--- a/src/mapi/glapi/gen/glX_proto_recv.py
+++ b/src/mapi/glapi/gen/glX_proto_recv.py
@@ -435,6 +435,10 @@ class PrintGlxDispatchFunctions(glX_proto_common.glx_print_proto):
                 print '        %s %s = __glXGetAnswerBuffer(cl, %s%s, answerBuffer, sizeof(answerBuffer), %u);' % (param.type_string(), param.name, param.counter, size_scale, type_size)
                 answer_string = param.name
                 answer_count = param.counter
+                print ''
+                print '        if (%s == NULL) return BadAlloc;' % (param.name)
+                print '        __glXClearErrorOccured();'
+                print ''
             elif c >= 1:
                 print '        %s %s[%u];' % (answer_type, param.name, c)
                 answer_string = param.name
-- 
2.5.0



More information about the mesa-dev mailing list