suppress MSVC code analysis (PREfast) warnings

Signed-off-by: Satoshi Tanda <tanda.sat@gmail.com>
diff --git a/cs.c b/cs.c
index c3becd8..3083905 100644
--- a/cs.c
+++ b/cs.c
@@ -1,7 +1,8 @@
 /* Capstone Disassembly Engine */
 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
 #if defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64)
-#pragma warning(disable:4996)
+#pragma warning(disable:4996)			// disable MSVC's warning on strcpy()
+#pragma warning(disable:28719)		// disable MSVC's warning on strcpy()
 #endif
 #if defined(CAPSTONE_HAS_OSXKERNEL)
 #include <libkern/libkern.h>