From cdbd83ded724dc77033d43b8439d1262f0e0866b Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Fri, 17 Jan 2025 12:07:20 -0500 Subject: [PATCH] Fix crash in matrix when pixelbuf is copied. --- amt/matrix.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amt/matrix.hpp b/amt/matrix.hpp index 81f9167..7309b94 100644 --- a/amt/matrix.hpp +++ b/amt/matrix.hpp @@ -164,7 +164,7 @@ namespace amt { } private: - pointer m_data; + pointer m_data{}; size_type m_row{}; size_type m_col{}; };