summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2018-04-02 16:41:23 +0100
committerAdam Jackson <ajax@redhat.com>2018-04-10 15:42:40 -0400
commit71a069fd7fbe815d386fc1b3c44cda732cff7af0 (patch)
tree9aaefb41845002ee32c26129d5ad5e5e45aa6d97
parentac48724639e0a6a9e421b3b4e545d8506fd6bf5d (diff)
glamor: zero num_formats from the start
The caller may ignore the return value (will be addressed with later commit) so simply zero the count from the get-go. We're pretty much do so, in all cases but one :-\ Fixes: cef12efc15c ("glamor: Implement GetSupportedModifiers") Cc: Louis-Francis Ratté-Boulianne <lfrb@collabora.com> Cc: Daniel Stone <daniels@collabora.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
-rw-r--r--glamor/glamor_egl.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/glamor/glamor_egl.c b/glamor/glamor_egl.c
index 7050bd001..9edb50967 100644
--- a/glamor/glamor_egl.c
+++ b/glamor/glamor_egl.c
@@ -596,30 +596,26 @@ glamor_get_formats(ScreenPtr screen,
struct glamor_egl_screen_private *glamor_egl;
EGLint num;
+ /* Explicitly zero the count as the caller may ignore the return value */
+ *num_formats = 0;
+
glamor_egl = glamor_egl_get_screen_private(xf86ScreenToScrn(screen));
if (!glamor_egl->dmabuf_capable)
return FALSE;
- if (!eglQueryDmaBufFormatsEXT(glamor_egl->display, 0, NULL, &num)) {
- *num_formats = 0;
+ if (!eglQueryDmaBufFormatsEXT(glamor_egl->display, 0, NULL, &num))
return FALSE;
- }
- if (num == 0) {
- *num_formats = 0;
+ if (num == 0)
return TRUE;
- }
*formats = calloc(num, sizeof(CARD32));
- if (*formats == NULL) {
- *num_formats = 0;
+ if (*formats == NULL)
return FALSE;
- }
if (!eglQueryDmaBufFormatsEXT(glamor_egl->display, num,
(EGLint *) *formats, &num)) {
- *num_formats = 0;
free(*formats);
return FALSE;
}