From 396c12ee73193f4ac3665ecac2f634fc0b046697 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 8 Dec 2011 16:46:21 +0000 Subject: Fixes for unsafe string handling, variable scoping errors. --- nGenEx/Physical.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nGenEx/Physical.cpp') diff --git a/nGenEx/Physical.cpp b/nGenEx/Physical.cpp index b6c132c..74a0f6d 100644 --- a/nGenEx/Physical.cpp +++ b/nGenEx/Physical.cpp @@ -39,7 +39,7 @@ Physical::Physical() radius(0.0f), mass(1.0f), integrity(1.0f), life(-1), dir(0), g_accel(0.0f), Do(0.0f), CL(0.0f), CD(0.0f), alpha(0.0f), stall(0.0f) { - strcpy(name, "unknown object"); + strcpy_s(name, "unknown object"); } // +--------------------------------------------------------------------+ @@ -56,7 +56,7 @@ Physical::Physical(const char* n, int t) radius(0.0f), mass(1.0f), integrity(1.0f), life(-1), dir(0), g_accel(0.0f), Do(0.0f), CL(0.0f), CD(0.0f), alpha(0.0f), stall(0.0f) { - strncpy(name, n, NAMELEN-1); + strncpy_s(name, n, NAMELEN-1); name[NAMELEN-1] = 0; } -- cgit v1.1