diff --git a/CMakeLists.txt b/CMakeLists.txt index 951ff533..b1ca3bef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.0 FATAL_ERROR) -project(tdnf VERSION 3.3.8 LANGUAGES C) +project(tdnf VERSION 3.3.9 LANGUAGES C) set(VERSION ${PROJECT_VERSION}) set(PROJECT_YEAR 2023) diff --git a/tools/cli/lib/api.c b/tools/cli/lib/api.c index 270ea6a5..3da0eb78 100644 --- a/tools/cli/lib/api.c +++ b/tools/cli/lib/api.c @@ -641,7 +641,7 @@ TDNFCliRepoSyncCommand( ) { uint32_t dwError = 0; - PTDNF_REPOSYNC_ARGS pReposyncArgs; + PTDNF_REPOSYNC_ARGS pReposyncArgs = NULL; if(!pContext || !pContext->hTdnf || !pCmdArgs || !pContext->pFnRepoSync) { @@ -671,7 +671,7 @@ TDNFCliRepoQueryCommand( { uint32_t dwError = 0; uint32_t dwCount = 0; - PTDNF_REPOQUERY_ARGS pRepoqueryArgs; + PTDNF_REPOQUERY_ARGS pRepoqueryArgs = NULL; PTDNF_PKG_INFO pPkgInfo = NULL; PTDNF_PKG_INFO pPkgInfos = NULL; int nCount = 0, i, j, k;