forked from pool/libgcrypt
fd1be62577
resubmit for another loop including staging OBS-URL: https://build.opensuse.org/request/show/212103 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgcrypt?expand=0&rev=35
22 lines
673 B
Diff
22 lines
673 B
Diff
From: Michal Vyskoci<mvyskocil@suse.com>
|
|
Subject: Use internall malloc in fips.c
|
|
|
|
|
|
---
|
|
src/fips.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: libgcrypt-1.6.0/src/fips.c
|
|
===================================================================
|
|
--- libgcrypt-1.6.0.orig/src/fips.c
|
|
+++ libgcrypt-1.6.0/src/fips.c
|
|
@@ -613,7 +613,7 @@ check_binary_integrity (void)
|
|
err = gpg_error (GPG_ERR_INTERNAL);
|
|
else
|
|
{
|
|
- fname = gcry_malloc (strlen (info.dli_fname) + 1 + 5 + 1 );
|
|
+ fname = _gcry_malloc (strlen (info.dli_fname) + 1 + 5 + 1 );
|
|
if (!fname)
|
|
err = gpg_error_from_syserror ();
|
|
else
|