draw: More defensive coding in DRAW_GET_IDX. 17/6617/1
authorJosé Fonseca <jfonseca@vmware.com>
Wed, 15 May 2013 15:59:28 +0000 (16:59 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 15 May 2013 15:59:28 +0000 (16:59 +0100)
Doesn't make a difference ATM, but just in case.

src/gallium/auxiliary/draw/draw_private.h

index 44698db..1b2d55f 100644 (file)
@@ -466,7 +466,7 @@ draw_get_rasterizer_no_cull( struct draw_context *draw,
  * If the index buffer would overflow we return the
  * index of the first element in the vb.
  */
-#define DRAW_GET_IDX(elts, i)                   \
-   ((i) >= draw->pt.user.eltMax) ? 0 : elts[i]
+#define DRAW_GET_IDX(_elts, _i)                   \
+   (((_i) >= draw->pt.user.eltMax) ? 0 : (_elts)[_i])
 
 #endif /* DRAW_PRIVATE_H */