[pacman-dev] [PATCH] libalpm: set pm_errno correctly in alpm_trans_get_flags()
9 Apr
2011
9 Apr
'11
11:38 a.m.
Signed-off-by: Rémy Oudompheng <remy@archlinux.org> --- Spotted while working on pyalpm. On branch "maint" lib/libalpm/trans.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c index 4b29f9a..08856d0 100644 --- a/lib/libalpm/trans.c +++ b/lib/libalpm/trans.c @@ -465,8 +465,8 @@ cleanup: int SYMEXPORT alpm_trans_get_flags() { /* Sanity checks */ - ASSERT(handle != NULL, return(-1)); - ASSERT(handle->trans != NULL, return(-1)); + ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1)); + ASSERT(handle->trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1)); return handle->trans->flags; } -- 1.7.4.4
5006
Age (days ago)
5006
Last active (days ago)
0 comments
1 participants
participants (1)
-
Rémy Oudompheng