summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-light-round.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-11-24 13:55:54 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-11-24 13:55:54 +1300
commitb2f485d9dfe25c2006fe2a1ace9a7ed1a9a9162f (patch)
tree265c83477aa8a1fbedded08f19789811adc03fa2 /src/fltk-widgets-buttons-light-round.adb
parent7739cbdfccea91e242fa6cecaf0d89e9695dc0e0 (diff)
Fixed double free in Finalize subprograms
Diffstat (limited to 'src/fltk-widgets-buttons-light-round.adb')
-rw-r--r--src/fltk-widgets-buttons-light-round.adb1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fltk-widgets-buttons-light-round.adb b/src/fltk-widgets-buttons-light-round.adb
index b0ed29a..9730413 100644
--- a/src/fltk-widgets-buttons-light-round.adb
+++ b/src/fltk-widgets-buttons-light-round.adb
@@ -67,6 +67,7 @@ package body FLTK.Widgets.Buttons.Light.Round is
begin
if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
free_fl_round_button (This.Void_Ptr);
+ This.Void_Ptr := Null_Pointer;
end if;
end Finalize;