mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 16:51:13 +08:00
mklog: skip unsupported files
This fixes an infinite loop one could see for: git show b87ec922c40 | ./contrib/mklog.py contrib/ChangeLog: * mklog.py: Fix infinite loop for unsupported files.
This commit is contained in:
parent
77d372abec
commit
236d6a33ca
@ -133,6 +133,9 @@ def generate_changelog(data, no_functions=False, fill_pr_titles=False):
|
||||
diff = PatchSet(data)
|
||||
|
||||
for file in diff:
|
||||
# skip files that can't be parsed
|
||||
if file.path == '/dev/null':
|
||||
continue
|
||||
changelog = find_changelog(file.path)
|
||||
if changelog not in changelogs:
|
||||
changelogs[changelog] = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user