Fix UB in setZero

This commit is contained in:
Charles Schlosser 2024-11-27 19:32:14 +00:00 committed by Rasmus Munk Larsen
parent f19a6803c8
commit d34b100c13

View File

@ -80,11 +80,14 @@ struct eigen_zero_impl<Xpr, /*use_memset*/ true> {
static constexpr size_t max_bytes = (std::numeric_limits<std::ptrdiff_t>::max)();
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void run(Xpr& dst) {
const size_t num_bytes = dst.size() * sizeof(Scalar);
if (num_bytes == 0) return;
void* dst_ptr = static_cast<void*>(dst.data());
#ifndef EIGEN_NO_DEBUG
if (num_bytes > max_bytes) throw_std_bad_alloc();
eigen_assert((dst_ptr != nullptr) && "null pointer dereference error!");
#endif
EIGEN_USING_STD(memset);
memset(dst.data(), 0, num_bytes);
memset(dst_ptr, 0, num_bytes);
}
};