Mesa (master): intel/tools: add missing variable initialisation

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Aug 9 10:24:08 UTC 2018


Module: Mesa
Branch: master
Commit: aac80f75973b61a8a31f873a9de6bcf294ea493c
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=aac80f75973b61a8a31f873a9de6bcf294ea493c

Author: Eric Engestrom <eric.engestrom at intel.com>
Date:   Wed Aug  8 15:26:32 2018 +0100

intel/tools: add missing variable initialisation

Fixes: 6a60beba4089315685b8 "intel/tools: Add an error state to aub translator"
Signed-off-by: Eric Engestrom <eric.engestrom at intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>

---

 src/intel/tools/error2aub.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/intel/tools/error2aub.c b/src/intel/tools/error2aub.c
index 3407dcec0b..2030593691 100644
--- a/src/intel/tools/error2aub.c
+++ b/src/intel/tools/error2aub.c
@@ -205,7 +205,7 @@ main(int argc, char *argv[])
       BO_TYPE_UNKNOWN = 0,
       BO_TYPE_BATCH,
       BO_TYPE_USER,
-   } bo_type;
+   } bo_type = BO_TYPE_UNKNOWN;
    uint64_t bo_addr;
 
    char *line = NULL;




More information about the mesa-commit mailing list