Fix use of alloca() without #include <c99_alloca.h>
authorJon Turney <jon.turney@dronecode.org.uk>
Tue, 3 Apr 2018 16:52:56 +0000 (17:52 +0100)
committerJon Turney <jon.turney@dronecode.org.uk>
Wed, 4 Apr 2018 13:34:07 +0000 (14:34 +0100)
Fix use of alloca() without #include <c99_alloca.h> in 1da345e5

vbo/vbo_context.c: In function '_vbo_draw_indirect':
vbo/vbo_context.c:284:34: error: implicit declaration of function 'alloca' [-Werror=implicit-function-declaration]
       struct _mesa_prim *space = alloca(draw_count*sizeof(struct _mesa_prim));
                                  ^~~~~~
vbo/vbo_context.c:284:34: warning: initialization makes pointer from integer without a cast [-Wint-conversion]

Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de>
src/mesa/vbo/vbo_context.c

index e50cee7a8c0ec87bace2a295cb88b7c838d1982f..f698fd0f4168321c70eacc51d9be24c0fe2e9e87 100644 (file)
@@ -25,6 +25,7 @@
  *    Keith Whitwell <keithw@vmware.com>
  */
 
+#include "c99_alloca.h"
 #include "main/mtypes.h"
 #include "main/bufferobj.h"
 #include "math/m_eval.h"