Page MenuHome GnuPG
Feed Advanced Search

Sep 6 2017

gniibe claimed T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

The description of this bug report is not correct.
_POSIX_C_SOURCE should *not* be defined to use INADDR_LOOPBACK for the system.

Sep 6 2017, 8:37 AM · MacOS, Bug Report, libassuan
bjmgeek added a project to T3384: general ipc error building libassuan on cygwin: Windows.
Sep 6 2017, 12:23 AM · Windows, libassuan, Bug Report
bjmgeek merged T3385: general ipc error building libassuan on cygwin into T3384: general ipc error building libassuan on cygwin.
Sep 6 2017, 12:23 AM · Windows, libassuan, Bug Report

Sep 5 2017

bjmgeek created T3384: general ipc error building libassuan on cygwin.
Sep 5 2017, 7:33 PM · Windows, libassuan, Bug Report

Jul 27 2017

werner lowered the priority of T3302: Allow non-blocking connect with Tor from Normal to Low.
Jul 27 2017, 9:36 AM · libassuan

Jul 26 2017

werner created T3302: Allow non-blocking connect with Tor.
Jul 26 2017, 2:08 PM · libassuan

Jul 6 2017

marcus closed T1562: libassuan-config unsuitable for multilib support as Wontfix.

We don't support pkg-config, because it is not POSIX. See https://lists.gnupg.org/pipermail/gnupg-devel/2014-May/028474.html for discussion.

Jul 6 2017, 5:39 PM · libassuan, Feature Request

Jun 23 2017

werner added a comment to T2424: libassuan CFLAGS/LDFLAGS not used.

Thanks for testing.

Jun 23 2017, 1:15 PM · libassuan, Bug Report
rwmj added a comment to T2424: libassuan CFLAGS/LDFLAGS not used.

Confirmed that it now compiles ok on Fedora, thanks.

Jun 23 2017, 12:28 PM · libassuan, Bug Report
werner closed T2424: libassuan CFLAGS/LDFLAGS not used as Resolved.

Thanks for the reminder. Fixed.
Note that LIBASSUAN_LIBS is not needed because it is already part of t_common_ldadd.

Jun 23 2017, 12:20 PM · libassuan, Bug Report
werner claimed T2424: libassuan CFLAGS/LDFLAGS not used.
Jun 23 2017, 11:52 AM · libassuan, Bug Report
rwmj added a comment to T2424: libassuan CFLAGS/LDFLAGS not used.

Jun 23 2017, 10:11 AM · libassuan, Bug Report
rwmj added a comment to T2424: libassuan CFLAGS/LDFLAGS not used.

I'm still hitting this on Fedora. The patch is simple and was posted on the mailing list but apparently not incorporated into git:

Jun 23 2017, 10:05 AM · libassuan, Bug Report

Mar 30 2017

admin created libassuan.
Mar 30 2017, 6:42 PM

Mar 1 2017

ballapete added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

This happens on at least PPC Mac OS X 10.4.11, Tiger. Compiler is by default Apple's
version of GCC 4.2. The error is reported as this:

libtool: compile: /opt/local/bin/gcc-apple-4.2 -DHAVE_CONFIG_H -I. -I..
-I.. -I/opt/local/include -I/opt/local/include -pipe -Os -arch ppc -Wall
-Wcast-align -Wshadow -Wstrict-prototypes -Wpointer-arith -MT
libassuan_la-assuan-socket.lo -MD -MP -MF .deps/libassuan_la-assuan-
socket.Tpo -c assuan-socket.c -fno-common -DPIC -o .libs/libassuan_la-
assuan-socket.o
assuan-socket.c: In function 'socks5_connect':
assuan-socket.c:732: error: 'INADDR_LOOPBACK' undeclared (first use in
this function)
assuan-socket.c:732: error: (Each undeclared identifier is reported only
once
assuan-socket.c:732: error: for each function it appears in.)
make[3]: * [libassuan_la-assuan-socket.lo] Error 1
make[3]: Leaving directory
`/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3/src'
make[2]:
* [all] Error 2
make[2]: Leaving directory
`/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3/src'
make[1]: * [all-recursive] Error 1
make[1]: Leaving directory
`/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3'
make:
* [all] Error 2
make: Leaving directory
`/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3'
Command failed: cd
"/opt/local/var/macports/build/_opt_local_var_macports_sources_lil.fr.rsync.macports.or
g_release_tarballs_ports_devel_libassuan/libassuan/work/libassuan-2.4.3"
&& /usr/bin/make -w all

Cause is that the declaration of 'INADDR_LOOPBACK' is hidden behind some guards. The
two external links document the situation, they also offer patches, either the attached
one or this addition for src/assuan-socket.c:

//fix missing define in MacOSX 10.4 Tiger
#ifndef INADDR_LOOPBACK

#define INADDR_LOOPBACK (u_int32_t)0x7f000001

#endif

In ten days I'll be at home again with my Apple PowerBook G4 and might have time to
check the situation in Mac OS X 10.5, Leopard.

Mar 1 2017, 8:59 PM · MacOS, Bug Report, libassuan
ballapete changed External Link from https://trac.macports.org/ticket/51708 to https://trac.macports.org/ticket/51708, https://trac.macports.org/ticket/53602 on T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.
Mar 1 2017, 8:59 PM · MacOS, Bug Report, libassuan
ballapete changed Version from 2.4.3 to 2.4.3, 2.4.2 on T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.
Mar 1 2017, 8:59 PM · MacOS, Bug Report, libassuan
ballapete added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

D380: 963_src_assuan-socket_INADDR_LOOPBACK.patch

Mar 1 2017, 8:59 PM · MacOS, Bug Report, libassuan
justus added a project to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE: MacOS.
Mar 1 2017, 4:54 PM · MacOS, Bug Report, libassuan
justus added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

See T2910.

Mar 1 2017, 4:54 PM · MacOS, Bug Report, libassuan

Nov 2 2016

justus removed a project from T2318: Libassuan failure: Info Needed.
Nov 2 2016, 2:00 PM · Bug Report, libassuan
justus closed T2318: Libassuan failure as Resolved.
Nov 2 2016, 2:00 PM · Bug Report, libassuan
justus added a comment to T2318: Libassuan failure.

I'm closing this bug due to inactivity. Feel free to reopen it with more
information.

Nov 2 2016, 2:00 PM · Bug Report, libassuan

Aug 24 2016

werner added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

I have seen that but pretty pelase describe it here so that we can also work
with email.

Aug 24 2016, 1:01 PM · MacOS, Bug Report, libassuan
Ricky added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

Detail info in https://trac.macports.org/ticket/51708
OS: PPC Tiger, Mac OS X 10.4.11
The build process is automated by macport.

Aug 24 2016, 2:53 AM · MacOS, Bug Report, libassuan

Aug 23 2016

werner added a comment to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.

Please describe exactly how you build Libassuan. Compiler, OS etc, error message.

Aug 23 2016, 4:36 PM · MacOS, Bug Report, libassuan
Ricky added projects to T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE: libassuan, Bug Report.
Aug 23 2016, 3:24 AM · MacOS, Bug Report, libassuan
Ricky set Version to 2.4.3 on T2447: macport compile failed in libassuan-2.4.3 due to undefine _POSIX_C_SOURCE.
Aug 23 2016, 3:24 AM · MacOS, Bug Report, libassuan

Aug 2 2016

werner renamed T2424: libassuan CFLAGS/LDFLAGS not used from liassuan CFLAGS/LDFLAGS not used to libassuan CFLAGS/LDFLAGS not used.
Aug 2 2016, 7:05 PM · libassuan, Bug Report
werner added a project to T2424: libassuan CFLAGS/LDFLAGS not used: libassuan.
Aug 2 2016, 7:05 PM · libassuan, Bug Report

Jul 14 2016

werner added a comment to T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path.

2.4.3 has been released and I assume that this works now. Feel free to re-open
if it is not the case.

Jul 14 2016, 2:10 PM · Bug Report, libassuan
werner closed T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path as Resolved.
Jul 14 2016, 2:10 PM · Bug Report, libassuan
werner removed a project from T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path: Restricted Project.
Jul 14 2016, 2:10 PM · Bug Report, libassuan
werner removed a project from T1476: libassuan 2.1.0 misses inet_pton on Solaris and potentially others: Unreleased.
Jul 14 2016, 1:50 PM · libassuan, Bug Report

Jul 13 2016

werner added a project to T1476: libassuan 2.1.0 misses inet_pton on Solaris and potentially others: Unreleased.
Jul 13 2016, 4:26 PM · libassuan, Bug Report
werner closed T1476: libassuan 2.1.0 misses inet_pton on Solaris and potentially others as Resolved.
Jul 13 2016, 4:26 PM · libassuan, Bug Report
werner added a comment to T1476: libassuan 2.1.0 misses inet_pton on Solaris and potentially others.

Patch applied with commit c52829e for 2.4.3.
Thanks.

Jul 13 2016, 4:26 PM · libassuan, Bug Report
werner added a project to T2318: Libassuan failure: Info Needed.
Jul 13 2016, 4:17 PM · Bug Report, libassuan
werner added a comment to T2318: Libassuan failure.

Had you a chance to run the suggested test?

Jul 13 2016, 4:17 PM · Bug Report, libassuan
werner added a project to T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path: Restricted Project.
Jul 13 2016, 4:14 PM · Bug Report, libassuan
werner added a comment to T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path.

Thanks. Changed with commit 678f606 for 2.4.3

Jul 13 2016, 4:14 PM · Bug Report, libassuan

Apr 22 2016

justus added a comment to T2323: fdpassing fails during make check.

Thanks for the output. That indeed confirms my suspicion. Let's read it together:

[...]
libassuan.so.0 =>
/home/ann/gnupg-2.1.11/libassuan-2.4.2/src/.libs/libassuan.so.0 (0x002e4000)
libgpg-error.so.0 => /lib/i386-linux-gnu/libgpg-error.so.0 (0x0066d000)

ldd says which library is used to satisfy a dependency at load time. You see
here that for libassuan.so.0 your newly built library is used. That is good.
However, for libgpg-error.so.0 the library from your system is used which does
not have gpgrt_asprintf, hence the error message in your first log.

What you need to do is to make sure the runtime linker finds your gpg-error
library. Since this kind of problem will occur for each library, it is best to
install all the libraries you built to a common prefix, say /home/ann/local or
/usr/local by specifying --prefix=/my/prefix at configure time, and then to set
LD_LIBRARY_PATH to /my/prefix/lib and include /my/prefix/bin in PATH, so that
gpg-error-config and libassuan-config and co are found at compile time. Feel
free to ask questions if you get stuck.

(If you don't want to do all this by hand, and merely want a working modern
GnuPG, you can also use the 'speedo' framework. See the README in the GnuPG
repository for some hints.)

Apr 22 2016, 2:12 PM · Duplicate, libassuan
justus removed a project from T2323: fdpassing fails during make check: Bug Report.
Apr 22 2016, 2:12 PM · Duplicate, libassuan
justus closed T2323: fdpassing fails during make check as Invalid.
Apr 22 2016, 2:12 PM · Duplicate, libassuan
ann added a comment to T2323: fdpassing fails during make check.

Apr 22 2016, 4:25 AM · Duplicate, libassuan
ann added a comment to T2323: fdpassing fails during make check.

Thank you. I've attached the output from 'ldd tests/fdpassing'. Not sure how to
read it.

Apr 22 2016, 4:25 AM · Duplicate, libassuan

Apr 18 2016

justus claimed T2323: fdpassing fails during make check.
Apr 18 2016, 12:35 PM · Duplicate, libassuan
justus added a comment to T2323: fdpassing fails during make check.

I don't think the bugs are necessarily related. Your issue looks like you build
your own libgpg-error and linked fdpassing against that, but your runtime linker
uses your system-supplied libgpg-error. Try running 'ldd tests/fdpassing' to
see which libgpg-error is used at run-time. Feel free to ask if you need more
assistance.

Apr 18 2016, 12:35 PM · Duplicate, libassuan
justus lowered the priority of T2323: fdpassing fails during make check from High to Normal.
Apr 18 2016, 12:35 PM · Duplicate, libassuan
justus claimed T2318: Libassuan failure.
Apr 18 2016, 12:30 PM · Bug Report, libassuan
justus added a comment to T2318: Libassuan failure.

Hello,

please run:

  strace -f -E srcdir=tests -o fdpassing.strace tests/fdpassing

and attach fdpassing.strace to this bug report.

Apr 18 2016, 12:30 PM · Bug Report, libassuan
ann added a comment to T2323: fdpassing fails during make check.

Duplicate of T2318

Apr 18 2016, 5:55 AM · Duplicate, libassuan
ann added a project to T2323: fdpassing fails during make check: Duplicate.
Apr 18 2016, 5:55 AM · Duplicate, libassuan

Apr 17 2016

ann renamed T2323: fdpassing fails during make check from fdpassing fails during to fdpassing fails during make check.
Apr 17 2016, 9:40 AM · Duplicate, libassuan
ann removed Due Date on T2323: fdpassing fails during make check.
Apr 17 2016, 9:39 AM · Duplicate, libassuan
ann set Version to 2.4.2 on T2323: fdpassing fails during make check.
Apr 17 2016, 9:37 AM · Duplicate, libassuan
ann set Due Date to Apr 18 2016, 2:00 AM on T2323: fdpassing fails during make check.
Apr 17 2016, 9:37 AM · Duplicate, libassuan
ann added projects to T2323: fdpassing fails during make check: libassuan, Bug Report.
Apr 17 2016, 9:37 AM · Duplicate, libassuan
ann added a comment to T2323: fdpassing fails during make check.

Apr 17 2016, 9:37 AM · Duplicate, libassuan

Apr 14 2016

werner lowered the priority of T2318: Libassuan failure from High to Normal.
Apr 14 2016, 3:41 PM · Bug Report, libassuan
neal added a comment to T2318: Libassuan failure.

What distribution are you using? You are probably better off using their
supplied binaries, which are hopefully tested.

Apr 14 2016, 9:28 AM · Bug Report, libassuan
malghwell added projects to T2318: Libassuan failure: libassuan, Bug Report.
Apr 14 2016, 8:54 AM · Bug Report, libassuan
malghwell set Version to 2.4.2 on T2318: Libassuan failure.
Apr 14 2016, 8:54 AM · Bug Report, libassuan

Feb 12 2016

neal updated subscribers of T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path.
Feb 12 2016, 1:31 PM · Bug Report, libassuan
neal assigned T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path to werner.
Feb 12 2016, 1:31 PM · Bug Report, libassuan
uldis set Version to 2.4.2 on T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path.
Feb 12 2016, 1:29 PM · Bug Report, libassuan
uldis added projects to T2253: libassuan not opening redirected socket if $GNUPGHOME/S.gpg-agent path longer than sun_path: libassuan, Bug Report.
Feb 12 2016, 1:29 PM · Bug Report, libassuan

Nov 23 2015

werner closed T1477: libassuan internal vasprintf causes segfaults on x86_64-sun-solaris2.10 as Resolved.
Nov 23 2015, 3:42 PM · Bug Report, libassuan
werner removed a project from T1477: libassuan internal vasprintf causes segfaults on x86_64-sun-solaris2.10: Restricted Project.
Nov 23 2015, 3:42 PM · Bug Report, libassuan

Nov 3 2015

werner added a project to T1477: libassuan internal vasprintf causes segfaults on x86_64-sun-solaris2.10: Restricted Project.
Nov 3 2015, 7:26 PM · Bug Report, libassuan
werner added a comment to T1477: libassuan internal vasprintf causes segfaults on x86_64-sun-solaris2.10.

Version 2.4.0 has been released which replaces the used vasprintf code.

Nov 3 2015, 7:26 PM · Bug Report, libassuan

Oct 20 2015

Bat_Guano added a project to T2129: honor dependency new libassuan in config script: gnupg.
Oct 20 2015, 1:12 PM · Bug Report, gnupg
Bat_Guano added projects to T2129: honor dependency new libassuan in config script: libassuan, Bug Report.
Oct 20 2015, 12:55 PM · Bug Report, gnupg
Bat_Guano set Version to 2.1.10-beta25 on T2129: honor dependency new libassuan in config script.
Oct 20 2015, 12:55 PM · Bug Report, gnupg

Aug 28 2015

werner added a project to T1695: memory fault in gpg --gen-key on AIX 6.1: Info Needed.
Aug 28 2015, 2:20 PM · Info Needed, gnupg (gpg20), Bug Report, libassuan
werner closed T1695: memory fault in gpg --gen-key on AIX 6.1 as Resolved.
Aug 28 2015, 2:20 PM · Info Needed, gnupg (gpg20), Bug Report, libassuan
werner closed T1780: check failure -- FAIL: pipeconnect as Resolved.
Aug 28 2015, 2:19 PM · Info Needed, Bug Report, libassuan
werner added a comment to T1477: libassuan internal vasprintf causes segfaults on x86_64-sun-solaris2.10.

FWIW: The not too long term plan is to replace the use of vasprintf.c by
functions from libgpg-error which is used anyway.

Aug 28 2015, 2:18 PM · Bug Report, libassuan

Aug 27 2015

werner added a comment to T1845: sending large keys to keyserver push fails with silent hang and "assuan_inquire failed: Too much data for IPC layer".

Re-assigning to gnupg. libassuan works correctly, afaics.
When trying to send back Zack's key I had the same problem last week and
increased the limit in dirmngr (84f4c8811fc5bdd78693c4dc289389a8337cc257).
I also mentioned that in a comment to another Debian bug report.

However, their should not be a hang but a proper error diagnostic; it is on my list.

Aug 27 2015, 3:35 PM · gnupg, gnupg (gpg21), Debian, Bug Report
dkg added a comment to T1845: sending large keys to keyserver push fails with silent hang and "assuan_inquire failed: Too much data for IPC layer".

with 2.1.7, i see no hang, but i do see failure with certain large certificates,
like 0xB27B944E34884E85:

0 dkg@alice:~$ gpg2 --send 0xB27B944E34884E85
gpg: sending key 0xB27B944E34884E85 to hkps server hkps.pool.sks-keyservers.net
gpg: keyserver send failed: Too much data for IPC layer
gpg: keyserver send failed: Too much data for IPC layer
2 dkg@alice:~$

maybe the boundary is 500KiB? I don't have this problem with my own OpenPGP cert:

0 dkg@alice:~$ gpg2 --export 0EE5BE979282D80B9F7540F1CCD2ED94D21739E9 | wc

3126   11384  481051

0 dkg@alice:~$ gpg2 --export 0xB27B944E34884E85 | wc

4310   13779  541937

0 dkg@alice:~$

Aug 27 2015, 3:03 PM · gnupg, gnupg (gpg21), Debian, Bug Report

Apr 23 2015

werner added a project to T1695: memory fault in gpg --gen-key on AIX 6.1: gnupg (gpg20).
Apr 23 2015, 5:17 PM · Info Needed, gnupg (gpg20), Bug Report, libassuan
werner added a comment to T1695: memory fault in gpg --gen-key on AIX 6.1.

Can you please downgrade to libgpg-error version 1.12 and try again?
I assume that there is a conflict between Pth and the Pthread mutexes from
libgpg-error > 1.12.

You may also consider to update to GnuPG 2.1.3 which does not use Pth anymore.

Apr 23 2015, 5:17 PM · Info Needed, gnupg (gpg20), Bug Report, libassuan
gniibe added a comment to T1695: memory fault in gpg --gen-key on AIX 6.1.

Please show us the version of your gpg-agent and its configuration
(~/.gnupg/gpg-agent.conf).
The version of gpg-agent is usually expected to be same one of gnupg, and the
invocation is:

/opt/freeware/bin/gpg-agent --daemon /bin/<SOMESHELL> # to invoke subshell
or
/opt/freeware/bin/gpg-agent --daemon # to be background

GnuPG invokes gpg-agent with --use-standard-socket-p to check if gpg-agent exists,
but it seems your GnuPG failed here waiting finish of gpg-agent.

Apr 23 2015, 4:13 AM · Info Needed, gnupg (gpg20), Bug Report, libassuan

Mar 10 2015

werner added a project to T1874: Memory leaks when running `make check` under Clang sanitizers: Mistaken.
Mar 10 2015, 9:47 AM · Mistaken, Bug Report, libassuan
werner closed T1874: Memory leaks when running `make check` under Clang sanitizers as Resolved.
Mar 10 2015, 9:47 AM · Mistaken, Bug Report, libassuan
werner added a comment to T1874: Memory leaks when running `make check` under Clang sanitizers.

Plerase write proper bug reports or discuss at gnupg-devel. Thanks.

Mar 10 2015, 9:47 AM · Mistaken, Bug Report, libassuan
werner closed T1887: assuan-buffer.c: dereference of null pointer as Resolved.
Mar 10 2015, 9:15 AM · Mistaken, Bug Report, libassuan
werner added a project to T1887: assuan-buffer.c: dereference of null pointer: Mistaken.
Mar 10 2015, 9:15 AM · Mistaken, Bug Report, libassuan

Mar 6 2015

JW renamed T1887: assuan-buffer.c: dereference of null pointer from Dereference of null pointer to assuan-buffer.c: dereference of null pointer.
Mar 6 2015, 8:36 AM · Mistaken, Bug Report, libassuan
JW added projects to T1887: assuan-buffer.c: dereference of null pointer: libassuan, Bug Report.
Mar 6 2015, 7:46 AM · Mistaken, Bug Report, libassuan
JW set Version to 2.2.0 on T1887: assuan-buffer.c: dereference of null pointer.
Mar 6 2015, 7:46 AM · Mistaken, Bug Report, libassuan
JW added a comment to T1874: Memory leaks when running `make check` under Clang sanitizers.

Updated status to 'unread'. I'm not chatting.

Mar 6 2015, 5:13 AM · Mistaken, Bug Report, libassuan
JW added a comment to T1874: Memory leaks when running `make check` under Clang sanitizers.

Updated status to 'unread'. I'm not chatting.

Mar 6 2015, 5:08 AM · Mistaken, Bug Report, libassuan
JW added a comment to T1874: Memory leaks when running `make check` under Clang sanitizers.

Here's the updated output with line numbers.

51121==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 12 byte(s) in 1 object(s) allocated from:

#0 0x49f22b in __interceptor_malloc

/home/gpg-user/Clang-3.5/llvm/projects/compiler-rt/lib/asan/asan_malloc_linux.cc:40:3

#1 0x4dc25a in socketpair_connect

/home/gpg-user/gcrypt-2.0-sanitize/libassuan-2.2.0/src/assuan-pipe-connect.c:317:15

#2 0x4bdec1 in main

/home/gpg-user/gcrypt-2.0-sanitize/libassuan-2.2.0/tests/fdpassing.c:291:13

#3 0x2afdc8bddec4 in __libc_start_main

/build/buildd/eglibc-2.19/csu/libc-start.c:287

Direct leak of 7 byte(s) in 1 object(s) allocated from:

#0 0x49f22b in __interceptor_malloc

/home/gpg-user/Clang-3.5/llvm/projects/compiler-rt/lib/asan/asan_malloc_linux.cc:40:3

#1 0x4bc978 in xmalloc

/home/gpg-user/gcrypt-2.0-sanitize/libassuan-2.2.0/tests/./common.h:62:13

#2 0x2afdc8bddec4 in __libc_start_main

/build/buildd/eglibc-2.19/csu/libc-start.c:287

SUMMARY: AddressSanitizer: 19 byte(s) leaked in 2 allocation(s).

51122==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 3784 byte(s) in 1 object(s) allocated from:

#0 0x49f22b in __interceptor_malloc

/home/gpg-user/Clang-3.5/llvm/projects/compiler-rt/lib/asan/asan_malloc_linux.cc:40:3

#1 0x4bed76 in assuan_new_ext

/home/gpg-user/gcrypt-2.0-sanitize/libassuan-2.2.0/src/assuan.c:134:11

#2 0x4bde6f in main

/home/gpg-user/gcrypt-2.0-sanitize/libassuan-2.2.0/tests/fdpassing.c:287:13

#3 0x2afdc8bddec4 in __libc_start_main

/build/buildd/eglibc-2.19/csu/libc-start.c:287

Direct leak of 7 byte(s) in 1 object(s) allocated from:

#0 0x49f22b in __interceptor_malloc

/home/gpg-user/Clang-3.5/llvm/projects/compiler-rt/lib/asan/asan_malloc_linux.cc:40:3

#1 0x4bc978 in xmalloc

/home/gpg-user/gcrypt-2.0-sanitize/libassuan-2.2.0/tests/./common.h:62:13

#2 0x2afdc8bddec4 in __libc_start_main

/build/buildd/eglibc-2.19/csu/libc-start.c:287

SUMMARY: AddressSanitizer: 3791 byte(s) leaked in 2 allocation(s).
FAIL: fdpassing

Mar 6 2015, 5:08 AM · Mistaken, Bug Report, libassuan
JW added a comment to T1874: Memory leaks when running `make check` under Clang sanitizers.

Mar 6 2015, 4:53 AM · Mistaken, Bug Report, libassuan
JW added a comment to T1874: Memory leaks when running `make check` under Clang sanitizers.

Attached is the script I am using to acceptance test the suite. It requires
Clang 3.5 (Clang 3.5 recipe was provided with Bug 1872).

Mar 6 2015, 4:53 AM · Mistaken, Bug Report, libassuan
JW added a comment to T1874: Memory leaks when running `make check` under Clang sanitizers.

Mar 6 2015, 1:43 AM · Mistaken, Bug Report, libassuan
JW added projects to T1874: Memory leaks when running `make check` under Clang sanitizers: libassuan, Bug Report.
Mar 6 2015, 1:33 AM · Mistaken, Bug Report, libassuan

Feb 17 2015

dkg added projects to T1845: sending large keys to keyserver push fails with silent hang and "assuan_inquire failed: Too much data for IPC layer": libassuan, Bug Report, Debian.
Feb 17 2015, 10:05 PM · gnupg, gnupg (gpg21), Debian, Bug Report

Jan 27 2015

werner added a comment to T1780: check failure -- FAIL: pipeconnect.

Can you please lookup the description or the symbol for the ERRNO value 141 ?
find /usr/include -name errno.h | xargs grep 141
might reveal it.

Jan 27 2015, 5:29 PM · Info Needed, Bug Report, libassuan