From d88f15a3c9272dddc53b5fcba6ee04697ec5c82b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 8 Feb 2015 13:17:28 +0200 Subject: Recode strcpy as memcpy VC12 deprecated those hard, as in, it is now an error. --- common/query/array/driver.cxx | 3 ++- mssql/types/test.hxx | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/common/query/array/driver.cxx b/common/query/array/driver.cxx index b47fc93..dcbe095 100644 --- a/common/query/array/driver.cxx +++ b/common/query/array/driver.cxx @@ -7,6 +7,7 @@ #include #include // std::auto_ptr +#include // std::memcpy #include #include @@ -146,7 +147,7 @@ main (int argc, char* argv[]) // #ifdef ODB_CXX11 array a; - strcpy (a.data (), "abc"); + memcpy (a.data (), "abc", 4); // VC++ strcpy deprecation. #ifndef DATABASE_COMMON assert (size (db->query (query::a == a)) == 1); diff --git a/mssql/types/test.hxx b/mssql/types/test.hxx index 15070e3..aea64cb 100644 --- a/mssql/types/test.hxx +++ b/mssql/types/test.hxx @@ -402,11 +402,11 @@ struct char_array } else { - std::strcpy (ls1, s); - std::strcpy (ls2, s); + std::memcpy (ls1, s, std::strlen (s) + 1); // VC++ strcpy deprecation. + std::memcpy (ls2, s, std::strlen (s) + 1); - std::wcscpy (lws1, ws); - std::wcscpy (lws2, ws); + std::memcpy (lws1, ws, (std::wcslen (ws) + 1) * sizeof (wchar_t)); + std::memcpy (lws2, ws, (std::wcslen (ws) + 1) * sizeof (wchar_t)); } } -- cgit v1.1