Re: [evolution-patches] fix for the bug 74227 [exchange calendar]



On Thu, 2005-03-31 at 12:31 +0530, chenthill wrote:
> Removed the check for the if (object) and changed the other callers not
> to send NULL for this argument. 
> 

> -       if(object)
> -               *object = e_cal_component_get_as_string (comp);
> +       *old_object = e_cal_component_get_as_string (comp);
> 
you should still be checking for old_object not NULL, since the caller
might pass a NULL pointer there. So:

	if (old_object)
		old_object = ....
-- 
Rodrigo Moya <rodrigo novell com>




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]