[Mesa-dev] [PATCH 2/4] nouveau/compiler: init the size and code variables to NULL/0
Martin Peres
martin.peres at linux.intel.com
Fri Jun 5 05:31:50 PDT 2015
This should prevent any segfault when the codegen fails.
Signed-off-by: Martin Peres <martin.peres at linux.intel.com>
---
src/gallium/drivers/nouveau/nouveau_compiler.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/gallium/drivers/nouveau/nouveau_compiler.c b/src/gallium/drivers/nouveau/nouveau_compiler.c
index 8660498..ca128b5 100644
--- a/src/gallium/drivers/nouveau/nouveau_compiler.c
+++ b/src/gallium/drivers/nouveau/nouveau_compiler.c
@@ -144,7 +144,7 @@ main(int argc, char *argv[])
const char *filename = NULL;
FILE *f;
char text[65536] = {0};
- unsigned size, *code;
+ unsigned size = 0, *code = NULL;
for (i = 1; i < argc; i++) {
if (!strcmp(argv[i], "-a"))
--
2.4.2
More information about the mesa-dev
mailing list