gallium/tgsi: fix valgrind warning
authorMarek Olšák <maraeo@gmail.com>
Fri, 22 Mar 2013 16:04:15 +0000 (17:04 +0100)
committerMarek Olšák <maraeo@gmail.com>
Tue, 26 Mar 2013 00:28:19 +0000 (01:28 +0100)
"Conditional jump or move depends on uninitialised value(s)"

Reviewed-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/tgsi/tgsi_text.c

index 6b97bee8b0f67178905e81c7ec1769dd255715c7..187e23ede2676a358387c5cf1503a78cf735c671 100644 (file)
@@ -1570,7 +1570,7 @@ tgsi_text_translate(
    struct tgsi_token *tokens,
    uint num_tokens )
 {
-   struct translate_ctx ctx;
+   struct translate_ctx ctx = {0};
 
    ctx.text = text;
    ctx.cur = text;