shithub: dav1d

Download patch

ref: d1f35c88e26a476ddc591dd04b5f1d4ce55a2af2
parent: e54028690a6afaf825b4bd04be6638692b855964
author: Janne Grunau <janne-vlc@jannau.net>
date: Mon Oct 1 16:40:27 EDT 2018

build: use -Werror=vla to prevent variable length arrays

--- a/meson.build
+++ b/meson.build
@@ -142,7 +142,7 @@
 # it is not an error and silently tolerated
 optional_arguments = [
   '-Wundef',
-  '-Wvla', # should be '-Werror=vla
+  '-Werror=vla',
 ]
 
 if (get_option('buildtype') != 'debug' and get_option('buildtype') != 'plain')