From: Christoph Bumiller Date: Fri, 14 Aug 2009 13:26:58 +0000 (+0200) Subject: nv50: fix typo in REALLOC's 2nd argument in ctor_immd X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f1aa2a43b7588aaca3ef175c8cc5366414cac2f8;p=mesa.git nv50: fix typo in REALLOC's 2nd argument in ctor_immd --- diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c index 4ec9c03305f..fefccd0b2a8 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;