diffstat for libotr-4.1.1 libotr-4.1.1

 changelog                         |    8 ++++++++
 patches/series                    |    1 +
 patches/tests-uninitialized.patch |   14 ++++++++++++++
 3 files changed, 23 insertions(+)

diff -Nru libotr-4.1.1/debian/changelog libotr-4.1.1/debian/changelog
--- libotr-4.1.1/debian/changelog	2025-03-05 23:35:33.000000000 +0200
+++ libotr-4.1.1/debian/changelog	2026-01-16 21:09:28.000000000 +0200
@@ -1,3 +1,11 @@
+libotr (4.1.1-6.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Add patch from Aurelien Jarno to fix reading uninitialized data
+    in the tests. (Closes: #932927)
+
+ -- Adrian Bunk <bunk@debian.org>  Fri, 16 Jan 2026 21:09:28 +0200
+
 libotr (4.1.1-6) unstable; urgency=medium
 
   * Add myself to Uploaders.
diff -Nru libotr-4.1.1/debian/patches/series libotr-4.1.1/debian/patches/series
--- libotr-4.1.1/debian/patches/series	2025-03-05 23:35:33.000000000 +0200
+++ libotr-4.1.1/debian/patches/series	2026-01-16 21:09:28.000000000 +0200
@@ -2,3 +2,4 @@
 0003-Disable-tests-that-fail-because-we-disable-the-API-v.patch
 0004-Suggest-pidgin-otr-to-Debian-and-Ubuntu-users-who-ha.patch
 0006-include-socket.h.patch
+tests-uninitialized.patch
diff -Nru libotr-4.1.1/debian/patches/tests-uninitialized.patch libotr-4.1.1/debian/patches/tests-uninitialized.patch
--- libotr-4.1.1/debian/patches/tests-uninitialized.patch	1970-01-01 02:00:00.000000000 +0200
+++ libotr-4.1.1/debian/patches/tests-uninitialized.patch	2026-01-16 21:09:28.000000000 +0200
@@ -0,0 +1,14 @@
+Description: Freading uninitialized data in the tests
+Author: Aurelien Jarno <aurel32@debian.org>
+Bug-Debian: https://bugs.debian.org/932927
+
+--- libotr-4.1.1.orig/tests/unit/test_auth.c
++++ libotr-4.1.1/tests/unit/test_auth.c
+@@ -67,6 +67,7 @@ static void test_auth_clear(void)
+ 	OtrlAuthInfo *auth = &ctx.auth;
+ 
+ 	/* API call. */
++	otrl_auth_new(&ctx);
+ 	otrl_auth_clear(auth);
+ 
+ 	ok(auth->authstate == OTRL_AUTHSTATE_NONE &&
