From a79bdd1e21ddb9a8ced00dd93febe4f7c5231848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 8 Dec 2021 20:30:02 +0100 Subject: [PATCH] Fix copy/paste error --- include/libgourou.h | 2 +- utils/drmprocessorclientimpl.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/libgourou.h b/include/libgourou.h index 9e3789b..1b294d1 100644 --- a/include/libgourou.h +++ b/include/libgourou.h @@ -40,7 +40,7 @@ #define ACS_SERVER "http://adeactivate.adobe.com/adept" #endif -#define LIBGOUROU_VERSION "0.4.4" +#define LIBGOUROU_VERSION "0.4.5" namespace gourou { diff --git a/utils/drmprocessorclientimpl.cpp b/utils/drmprocessorclientimpl.cpp index 9c5ec1e..99a9a3e 100644 --- a/utils/drmprocessorclientimpl.cpp +++ b/utils/drmprocessorclientimpl.cpp @@ -456,7 +456,7 @@ void DRMProcessorClientImpl::inflate(std::string data, gourou::ByteArray& result } if (ret == Z_STREAM_END) - ret = deflateEnd(&infstream); + ret = inflateEnd(&infstream); delete[] buffer;