diff options
author | Werner Koch <[email protected]> | 2014-09-08 17:26:02 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-09-08 17:26:02 +0000 |
commit | 64329cce9a0f21cf941ff2c3f542a08c57cb5378 (patch) | |
tree | 2757f807c51b06645bff08cb9c85c72e49b151d9 /common/membuf.c | |
parent | gpg: Do not show "MD5" and triplicated "RSA" in --version. (diff) | |
parent | gpg: Fix memory leak in ECC encryption. (diff) | |
download | gnupg-64329cce9a0f21cf941ff2c3f542a08c57cb5378.tar.gz gnupg-64329cce9a0f21cf941ff2c3f542a08c57cb5378.zip |
Merge branch 'wk/test-gpgrt-estream'
Diffstat (limited to 'common/membuf.c')
-rw-r--r-- | common/membuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/membuf.c b/common/membuf.c index 6c9fee957..cc7772f29 100644 --- a/common/membuf.c +++ b/common/membuf.c @@ -132,7 +132,7 @@ put_membuf_printf (membuf_t *mb, const char *format, ...) char *buf; va_start (arg_ptr, format); - rc = estream_vasprintf (&buf, format, arg_ptr); + rc = gpgrt_vasprintf (&buf, format, arg_ptr); if (rc < 0) mb->out_of_core = errno ? errno : ENOMEM; va_end (arg_ptr); |