From: Pierre Joye Date: Mon, 7 Feb 2011 10:17:14 +0000 (+0000) Subject: - disable realloc warning about not checking its return value, 100% valid but way... X-Git-Tag: php-5.3.6RC1~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=555e42fb5a97744a0c8e61593561a06ac30f192e;p=php - disable realloc warning about not checking its return value, 100% valid but way too many of them for now, reduce noises --- diff --git a/win32/build/config.w32 b/win32/build/config.w32 index ce61450a8e..b34ff2a0b6 100644 --- a/win32/build/config.w32 +++ b/win32/build/config.w32 @@ -416,4 +416,5 @@ if (PHP_SECURITY_FLAGS == "yes") { ARG_ENABLE("static-analyze", "Enable the VC compiler static analyze", "no"); if (PHP_STATIC_ANALYZE == "yes" && PHP_SNAPSHOT_BUILD == "no") { ADD_FLAG("CFLAGS", " /analyze "); + ADD_FLAG("CFLAGS", " /wd6308 "); }