Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package aws-c-io for openSUSE:Factory 
checked in at 2024-02-08 19:03:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aws-c-io (Old)
 and      /work/SRC/openSUSE:Factory/.aws-c-io.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aws-c-io"

Thu Feb  8 19:03:05 2024 rev:2 rq:1145088 version:0.14.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/aws-c-io/aws-c-io.changes        2024-01-29 
22:27:50.390887299 +0100
+++ /work/SRC/openSUSE:Factory/.aws-c-io.new.1815/aws-c-io.changes      
2024-02-08 19:03:14.889446898 +0100
@@ -1,0 +2,6 @@
+Wed Feb  7 11:53:10 UTC 2024 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- Update to version 0.14.3
+  * Fix NULL config clean-up by @waahm7 in (#620)
+
+-------------------------------------------------------------------

Old:
----
  v0.14.2.tar.gz

New:
----
  v0.14.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ aws-c-io.spec ++++++
--- /var/tmp/diff_new_pack.PSRzvK/_old  2024-02-08 19:03:17.073525849 +0100
+++ /var/tmp/diff_new_pack.PSRzvK/_new  2024-02-08 19:03:17.089526428 +0100
@@ -20,7 +20,7 @@
 %define library_version 1.0.0
 %define library_soversion 0unstable
 Name:           aws-c-io
-Version:        0.14.2
+Version:        0.14.3
 Release:        0
 Summary:        I/O and TLS package AWS SDK for C
 License:        Apache-2.0

++++++ v0.14.2.tar.gz -> v0.14.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aws-c-io-0.14.2/source/s2n/s2n_tls_channel_handler.c 
new/aws-c-io-0.14.3/source/s2n/s2n_tls_channel_handler.c
--- old/aws-c-io-0.14.2/source/s2n/s2n_tls_channel_handler.c    2024-01-25 
01:21:37.000000000 +0100
+++ new/aws-c-io-0.14.3/source/s2n/s2n_tls_channel_handler.c    2024-01-29 
22:18:02.000000000 +0100
@@ -1312,8 +1312,9 @@
 
 static void s_s2n_ctx_destroy(struct s2n_ctx *s2n_ctx) {
     if (s2n_ctx != NULL) {
-        s2n_config_free(s2n_ctx->s2n_config);
-
+        if (s2n_ctx->s2n_config) {
+            s2n_config_free(s2n_ctx->s2n_config);
+        }
         if (s2n_ctx->custom_cert_chain_and_key) {
             s2n_cert_chain_and_key_free(s2n_ctx->custom_cert_chain_and_key);
         }

Reply via email to