]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update for 18.24.1 18.24.1
authorAsterisk Development Team <asteriskteam@digium.com>
Thu, 25 Jul 2024 15:23:44 +0000 (15:23 +0000)
committerAsterisk Development Team <asteriskteam@digium.com>
Thu, 25 Jul 2024 15:23:44 +0000 (15:23 +0000)
.version
CHANGES.md
ChangeLogs/ChangeLog-18.24.1.md [new file with mode: 0644]

index 35566da06594e4253ffe4970e88d02b72505a2bb..6e9eea874b820c0922ade07d4f4dd6bf56b92f5a 100644 (file)
--- a/.version
+++ b/.version
@@ -1 +1 @@
-18.24.0
+18.24.1
index 538a356d1f8aebf2d3e0b35bdf12a8bfb24cff99..526a2c7fec23b134eb61552c41e12fe0cb1bcc44 120000 (symlink)
@@ -1 +1 @@
-ChangeLogs/ChangeLog-18.24.0.md
\ No newline at end of file
+ChangeLogs/ChangeLog-18.24.1.md
\ No newline at end of file
diff --git a/ChangeLogs/ChangeLog-18.24.1.md b/ChangeLogs/ChangeLog-18.24.1.md
new file mode 100644 (file)
index 0000000..9dc810d
--- /dev/null
@@ -0,0 +1,69 @@
+
+## Change Log for Release asterisk-18.24.1
+
+### Links:
+
+ - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-18.24.1.md)  
+ - [GitHub Diff](https://github.com/asterisk/asterisk/compare/18.24.0...18.24.1)  
+ - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-18.24.1.tar.gz)  
+ - [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)  
+
+### Summary:
+
+- Commits: 2
+- Commit Authors: 1
+- Issues Resolved: 2
+- Security Advisories Resolved: 0
+
+### User Notes:
+
+
+### Upgrade Notes:
+
+
+### Commit Authors:
+
+- George Joseph: (2)
+
+## Issue and Commit Detail:
+
+### Closed Issues:
+
+  - 819: [bug]: Typo in voicemail.conf.sample that stops it from loading when using "make samples"
+  - 822: [bug]: segfault in main/rtp_engine.c:1489 after updating 20.8.1 -> 20.9.0
+
+### Commits By Author:
+
+- #### George Joseph (2):
+  - voicemail.conf.sample: Fix ':' comment typo
+  - rtp_engine.c: Prevent segfault in ast_rtp_codecs_payloads_unset()
+
+
+### Commit List:
+
+-  rtp_engine.c: Prevent segfault in ast_rtp_codecs_payloads_unset()
+-  voicemail.conf.sample: Fix ':' comment typo
+
+### Commit Details:
+
+#### rtp_engine.c: Prevent segfault in ast_rtp_codecs_payloads_unset()
+  Author: George Joseph
+  Date:   2024-07-25
+
+  There can be empty slots in payload_mapping_tx corresponding to
+  dynamic payload types that haven't been seen before so we now
+  check for NULL before attempting to use 'type' in the call to
+  ast_format_cmp.
+
+  Note: Currently only chan_sip calls ast_rtp_codecs_payloads_unset()
+
+  Resolves: #822
+
+#### voicemail.conf.sample: Fix ':' comment typo
+  Author: George Joseph
+  Date:   2024-07-24
+
+  ...and removed an errant trailing space.
+
+  Resolves: #819
+