[Spice-devel] [PATCH] Cap logging level to the valid bounds

Frediano Ziglio fziglio at redhat.com
Fri Mar 11 10:20:24 UTC 2016


> 
> Hey,
> 
> Yep, thanks for sending it. For what it's worth, git commit has a
> --author option ;)
> 
> Christophe
> 

It's true but the commit is composed by code changes and commit message.

Frediano

> On Thu, Mar 10, 2016 at 04:29:39PM +0000, Frediano Ziglio wrote:
> > Avoid overflows using its values.
> > The patch was originally written by Christophe Fergeau
> > ---
> >  common/log.c | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/common/log.c b/common/log.c
> > index a9bbebc..8d47cb6 100644
> > --- a/common/log.c
> > +++ b/common/log.c
> > @@ -50,7 +50,8 @@ static GLogLevelFlags
> > spice_log_level_to_glib(SpiceLogLevel level)
> >          [ SPICE_LOG_LEVEL_INFO ] = G_LOG_LEVEL_INFO,
> >          [ SPICE_LOG_LEVEL_DEBUG ] = G_LOG_LEVEL_DEBUG,
> >      };
> > -    g_return_val_if_fail ((level >= 0) || (level <
> > G_N_ELEMENTS(glib_levels)), 0);
> > +    g_return_val_if_fail (level >= 0, G_LOG_LEVEL_ERROR);
> > +    g_return_val_if_fail (level < G_N_ELEMENTS(glib_levels),
> > G_LOG_LEVEL_DEBUG);
> >  
> >      return glib_levels[level];
> >  }



More information about the Spice-devel mailing list