Mesa (master): nv50: fix typo in REALLOC's 2nd argument in ctor_immd

Christoph Bumiller chrisbmr at kemper.freedesktop.org
Fri Aug 14 13:55:09 UTC 2009


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

Author: Christoph Bumiller <e0425955 at student.tuwien.ac.at>
Date:   Fri Aug 14 15:26:58 2009 +0200

nv50: fix typo in REALLOC's 2nd argument in ctor_immd

---

 src/gallium/drivers/nv50/nv50_program.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c
index 4ec9c03..fefccd0 100644
--- a/src/gallium/drivers/nv50/nv50_program.c
+++ b/src/gallium/drivers/nv50/nv50_program.c
@@ -296,7 +296,7 @@ kill_temp_temp(struct nv50_pc *pc)
 static int
 ctor_immd(struct nv50_pc *pc, float x, float y, float z, float w)
 {
-	pc->immd_buf = REALLOC(pc->immd_buf, (pc->immd_nr * r * sizeof(float)),
+	pc->immd_buf = REALLOC(pc->immd_buf, (pc->immd_nr * 4 * sizeof(float)),
 			       (pc->immd_nr + 1) * 4 * sizeof(float));
 	pc->immd_buf[(pc->immd_nr * 4) + 0] = x;
 	pc->immd_buf[(pc->immd_nr * 4) + 1] = y;




More information about the mesa-commit mailing list