From: Anatol Belski Date: Sun, 2 Mar 2014 11:49:30 +0000 (+0100) Subject: turn off some false positives X-Git-Tag: php-5.6.0beta1~3^2~155 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d4adf4fe1134f1855a0d2e6ec284db78d2f18f3;p=php turn off some false positives --- diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 5ccdfa11aa..68aae6e397 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -1393,7 +1393,7 @@ function ADD_SOURCES(dir, file_list, target, obj_dir) if (PHP_ANALYZER == "pvs") { MFO.WriteLine("\t@\"$(PVS_STUDIO)\" --cl-params $(" + flags + ") $(CFLAGS) $(" + bd_flags_name + ") /c " + dir + "\\" + src + " --source-file " + dir + "\\" + src - + " --cfg PVS-Studio.conf "); + + " --cfg PVS-Studio.conf --errors-off \"V122 V117 V111\" "); } MFO.WriteLine("\t@$(CC) $(" + flags + ") $(CFLAGS) $(" + bd_flags_name + ") /c " + dir + "\\" + src + " /Fo" + sub_build + obj); }