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.4.0alpha1~191^2~258 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=312235cdacb896e235bb68b582ddc45f56f2b818;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 79985bdefb..49c55daa46 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 "); }