[pacman-dev] [PATCH] Add check for NULL data parameter in sync commit

Nagy Gabor ngaba at bibl.u-szeged.hu
Sat Dec 22 08:03:00 EST 2007


> From: Allan McRae <allan.mcrae at qimr.edu.au>
> To: Discussion list for pacman development <pacman-dev at archlinux.org>
> Subject: [pacman-dev] [PATCH] Add check for NULL data parameter in
> sync commit Date: Sat, 22 Dec 2007 14:06:44 +1000
> Reply-To: Discussion list for pacman development
> <pacman-dev at archlinux.org> User-Agent: Thunderbird 2.0.0.9
> (X11/20071213)
> 
> 
> 
> >From ccb76f0d909f3532af8e4004a125d21f9012ae78 Mon Sep 17 00:00:00
> >2001  
> From: Allan McRae <mcrae_allan at hotmail.com>
> Date: Sat, 22 Dec 2007 14:01:48 +1000
> Subject: [PATCH] Add check for NULL data parameter in sync commit
> 
> Fixes FS#7380: alpm crashes on passing NULL to alpm_trans_commit in
> a sync operation. Adds sanity check in _alpm_trans_commit for case
> PM_TRANS_TYPE_SYNC.
> 
> Signed-off-by: Allan McRae <mcrae_allan at hotmail.com>
> ---
>  lib/libalpm/trans.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c
> index 582c76b..31b2747 100644
> --- a/lib/libalpm/trans.c
> +++ b/lib/libalpm/trans.c
> @@ -415,6 +415,8 @@ int _alpm_trans_commit(pmtrans_t *trans,
> alpm_list_t **data) }
>  		break;
>  		case PM_TRANS_TYPE_SYNC:
> +			/* Sanity checks */
> +			ASSERT(data != NULL,
> RET_ERR(PM_ERR_WRONG_ARGS, -1)); if(_alpm_sync_commit(trans,
> handle->db_local, data) == -1) { /* pm_errno is set by
> _alpm_sync_commit() */ return(-1);

Indeed, this bug still exists. But I interpret your patch as a
workaround (or hotfix), right? I mean we should fix alpm_sync_commit to
work with NULL **data (which means we don't need additional error info)

Bye




More information about the pacman-dev mailing list