From d922bb09038d818f9a484061ff71b251b5b8194f Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Thu, 13 May 2021 12:27:58 +0430 Subject: [PATCH] LibTLS: Enable -Wvla for LibTLS Fixes #7071. --- Userland/Libraries/LibTLS/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibTLS/CMakeLists.txt b/Userland/Libraries/LibTLS/CMakeLists.txt index e4194ac456..21dcdce4d2 100644 --- a/Userland/Libraries/LibTLS/CMakeLists.txt +++ b/Userland/Libraries/LibTLS/CMakeLists.txt @@ -1,3 +1,5 @@ +add_compile_options(-Wvla) + set(SOURCES ClientHandshake.cpp Exchange.cpp