diff --git a/src/cuda/communication/CustomMemoryBuffer.impl.h b/src/cuda/communication/CustomMemoryBuffer.impl.h index 377ba4bd3dd6dc1b07100cdcac86dccd4fc5265d..5bf1ac8c18c37ce8fc72c8af24d71208f71209f6 100644 --- a/src/cuda/communication/CustomMemoryBuffer.impl.h +++ b/src/cuda/communication/CustomMemoryBuffer.impl.h @@ -83,7 +83,10 @@ namespace communication { newBegin = reinterpret_cast<ElementType *>(Allocator::allocate( newSize )); - Allocator::memcpy( newBegin, begin_, size_t(end_ - begin_) ); + // memcpy: If either dest or src is an invalid or null pointer, the behavior is undefined, even if count is zero. + if(begin_) { + Allocator::memcpy( newBegin, begin_, size_t(end_ - begin_) ); + } std::swap( begin_, newBegin ); if( newBegin != nullptr )