1 --- Clp/src/ClpParameters.hpp
2 +++ Clp/src/ClpParameters.hpp
4 template <class T> inline void
5 ClpDisjointCopyN( const T * array, const int size, T * newArray)
7 - memcpy(reinterpret_cast<void *> (newArray), array, size * sizeof(T));
8 + if (size != 0) memcpy(reinterpret_cast<void *> (newArray), array, size * sizeof(T));
11 template <class T> inline void