From d767b8ceb8a360442380b6f58aa7e91e498977c0 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Thu, 21 Nov 2024 01:30:28 +0100 Subject: [PATCH] FLUID: autodoc image memory allocation fix. --- fluid/autodoc.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluid/autodoc.cxx b/fluid/autodoc.cxx index 35e1a73bdd..a47cdf19ae 100644 --- a/fluid/autodoc.cxx +++ b/fluid/autodoc.cxx @@ -104,7 +104,7 @@ static int convert_RGB_to_RGBA(Fl_RGB_Image *&img) { delete img; // Create the new image img = new Fl_RGB_Image(data, img_w, img_h, 4); - delete[] data; + img->alloc_array = 1; return 0; }