Control: tags 932927 + pending Dear maintainer,
I've prepared an NMU for libotr (versioned as 4.1.1-6.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should cancel it. cu Adrian
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 <[email protected]> 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 <[email protected]> +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 &&

