Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / external / coinmp / ubsan.patch.0
blob15733298609830aa4c0f9ef0700a8f94a89effa2
1 --- Clp/src/ClpParameters.hpp
2 +++ Clp/src/ClpParameters.hpp
3 @@ -81,7 +81,7 @@
4  template <class T> inline void
5  ClpDisjointCopyN( const T * array, const int size, T * newArray)
6  {
7 -     memcpy(reinterpret_cast<void *> (newArray), array, size * sizeof(T));
8 +     if (size != 0) memcpy(reinterpret_cast<void *> (newArray), array, size * sizeof(T));
9  }
10  /// And set
11  template <class T> inline void