[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * install-info/install-info.c (parse_input): Allo
From: |
Gavin D. Smith |
Subject: |
branch master updated: * install-info/install-info.c (parse_input): Allocate all fields of struct spec_entry. |
Date: |
Tue, 21 Dec 2021 13:41:29 -0500 |
This is an automated email from the git hooks/post-receive script.
gavin pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new cc4376b * install-info/install-info.c (parse_input): Allocate all
fields of struct spec_entry.
cc4376b is described below
commit cc4376b915a5ef2376926d57d903a2e745272462
Author: Brendan O'Dea <bod@debian.org>
AuthorDate: Tue Dec 21 18:41:09 2021 +0000
* install-info/install-info.c (parse_input): Allocate all
fields of struct spec_entry.
---
ChangeLog | 5 +++++
install-info/install-info.c | 2 ++
2 files changed, 7 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index c0ba835..e518659 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2021-12-21 Brendan O'Dea <bod@debian.org> (tiny change)
+
+ * install-info/install-info.c (parse_input): Allocate all
+ fields of struct spec_entry.
+
2021-12-21 Gavin Smith <gavinsmith0123@gmail.com>
* install-info/install-info.c (extract_menu_file_name):
diff --git a/install-info/install-info.c b/install-info/install-info.c
index ef61c5a..2638755 100644
--- a/install-info/install-info.c
+++ b/install-info/install-info.c
@@ -1127,6 +1127,8 @@ parse_input (const struct line_data *lines, int nlines,
next->entry_sections = head;
next->entry_sections_tail = tail;
next->missing_basename = 0;
+ next->missing_name = 0;
+ next->missing_description = 0;
next->next = *entries;
*entries = next;
n_entries++;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * install-info/install-info.c (parse_input): Allocate all fields of struct spec_entry.,
Gavin D. Smith <=