gem_exec_flush.c: In function ‘batch’:
gem_exec_flush.c:443:15: warning: ‘ptr’ may be used uninitialized in this 
function [-Wmaybe-uninitialized]

Signed-off-by: Chris Wilson <ch...@chris-wilson.co.uk>
---
 tests/gem_exec_flush.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/gem_exec_flush.c b/tests/gem_exec_flush.c
index c93eee4b..f820b2a8 100644
--- a/tests/gem_exec_flush.c
+++ b/tests/gem_exec_flush.c
@@ -426,6 +426,11 @@ static void batch(int fd, unsigned ring, int nchild, int 
timeout,
                        ptr = mmap(0, 64<<10, PROT_WRITE,
                                   MAP_PRIVATE | MAP_ANON, -1, 0);
                        break;
+
+               default:
+                       igt_assert(!"reachable");
+                       ptr = NULL;
+                       break;
                }
 
                memset(&reloc, 0, sizeof(reloc));
-- 
2.16.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to