Date: Sat, 13 Oct 2018 06:47:49 +0000 From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 232219] sysutils/radmind: Fix Openssl build Message-ID: <bug-232219-7788-sH8bNmLJgz@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-232219-7788@https.bugs.freebsd.org/bugzilla/> References: <bug-232219-7788@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D232219 Tobias Kortkamp <tobik@freebsd.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tobik@freebsd.org --- Comment #1 from Tobias Kortkamp <tobik@freebsd.org> --- + extern EVP_MD *md; +- EVP_MD_CTX mdctx; ++ EVP_MD_CTX *mdctx; + unsigned char md_value[ EVP_MAX_MD_SIZE ]; +=20 +- EVP_DigestInit( &mdctx, md );=20 ++ EVP_DigestInit( mdctx, md );=20 +=20 No. EVP_DigestInit does not allocate any memory and mdctx points to whereve= r, so this is broken. Was this run tested at all? Or was this just build tested? --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-232219-7788-sH8bNmLJgz>