mirror of
https://github.com/Ylianst/MeshAgent
synced 2026-01-03 00:53:41 +00:00
Addressed Checkmarx issues
This commit is contained in:
@@ -264,7 +264,7 @@ long ILibGetTimeStamp();
|
||||
// Polyfills
|
||||
#ifndef memcpy_s
|
||||
int ILibMemory_Copy_s(void *destination, size_t destinationSize, void *source, size_t sourceLength);
|
||||
#define memcpy_s(dest, destSize, source, sourceLen) ILibMemory_Copy_s(dest, destSize, source, sourceLen)
|
||||
#define memcpy_s(dest, destSize, source, sourceLen) ILibMemory_Copy_s(dest, destSize, (void*)source, sourceLen)
|
||||
#endif
|
||||
|
||||
#ifndef memmove_s
|
||||
|
||||
Reference in New Issue
Block a user