diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libalpm/alpm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index c3f55df1..f462d38e 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -93,6 +93,11 @@ int alpm_release() ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1)); + /* free the transaction if there is any */ + if(handle->trans) { + alpm_trans_release(); + } + /* close local database */ if(handle->db_local) { db_close(handle->db_local); |