View | Details | Raw Unified | Return to bug 273534 | Differences between
and this patch

Collapse All | Expand All

(-)kodi/Makefile (-1 / +1 lines)
Lines 1-6 Link Here
1
PORTNAME=	kodi
1
PORTNAME=	kodi
2
DISTVERSION=	20.2
2
DISTVERSION=	20.2
3
PORTREVISION=	3
3
PORTREVISION=	4
4
CATEGORIES=	multimedia java
4
CATEGORIES=	multimedia java
5
# do not forget to fix devel/kodi-platform when updating kodi
5
# do not forget to fix devel/kodi-platform when updating kodi
6
6
(-)kodi/files/patch-xbmc_utils_Digest.cpp (+16 lines)
Line 0 Link Here
1
--- xbmc/utils/Digest.cpp.orig	2023-06-29 06:58:06 UTC
2
+++ xbmc/utils/Digest.cpp
3
@@ -94,11 +94,11 @@ CDigest::Type CDigest::TypeFromString(std::string cons
4
 
5
 void CDigest::MdCtxDeleter::operator()(EVP_MD_CTX* context)
6
 {
7
-  EVP_MD_CTX_destroy(context);
8
+  EVP_MD_CTX_free(context);
9
 }
10
 
11
 CDigest::CDigest(Type type)
12
-: m_context{EVP_MD_CTX_create()}, m_md(TypeToEVPMD(type))
13
+: m_context{EVP_MD_CTX_new()}, m_md(TypeToEVPMD(type))
14
 {
15
   if (1 != EVP_DigestInit_ex(m_context.get(), m_md, nullptr))
16
   {

Return to bug 273534