From c846076c53535253576c5831cfc23e8ae285b28d Mon Sep 17 00:00:00 2001 From: David Puglielli Date: Fri, 12 May 2017 13:50:13 -0700 Subject: [PATCH] Removed extraneous null terminator that caused Address Sanitizer to complain --- source/shared/StringFunctions.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/source/shared/StringFunctions.cpp b/source/shared/StringFunctions.cpp index 086b9184..a9b520d3 100644 --- a/source/shared/StringFunctions.cpp +++ b/source/shared/StringFunctions.cpp @@ -136,7 +136,6 @@ int mplat_strcat_s( char * dest, size_t destSize, const char * src ) errno = ERANGE; return ERANGE; } - *p = 0; return 0; } //