texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * tp/Texinfo/XS/main/customization_options.c (fre


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/XS/main/customization_options.c (free_options_list): free the options itself.
Date: Mon, 28 Oct 2024 17:04:19 -0400

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new c1cf4205a9 * tp/Texinfo/XS/main/customization_options.c 
(free_options_list): free the options itself.
c1cf4205a9 is described below

commit c1cf4205a98a6aecffc198b5003d6ab6038d16a8
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Mon Oct 28 22:04:06 2024 +0100

    * tp/Texinfo/XS/main/customization_options.c (free_options_list): free
    the options itself.
---
 ChangeLog                                  | 5 +++++
 tp/Texinfo/XS/main/customization_options.c | 1 +
 2 files changed, 6 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index 3e9cf87ce4..7b898376ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-10-28  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/XS/main/customization_options.c (free_options_list): free
+       the options itself.
+
 2024-10-28  Gavin Smith <gavinsmith0123@gmail.com>
 
        Link to section header not just the page
diff --git a/tp/Texinfo/XS/main/customization_options.c 
b/tp/Texinfo/XS/main/customization_options.c
index d162e6bf16..473389d449 100644
--- a/tp/Texinfo/XS/main/customization_options.c
+++ b/tp/Texinfo/XS/main/customization_options.c
@@ -423,6 +423,7 @@ free_options_list (OPTIONS_LIST *options_list)
   free (options_list->list);
   free (options_list->sorted_options);
   free_options (options_list->options);
+  free (options_list->options);
 }
 
 void



reply via email to

[Prev in Thread] Current Thread [Next in Thread]