On Mon, Jan 11, 2016 at 01:04:50PM -0600, Derek Foreman wrote:
> On 28/12/15 08:10 PM, Jonas Ådahl wrote:
> > A statement was added at the same indentation level as the true branch
> > of the if statement, but since there were no brackets, it would be
> > executed independently of the result of the if condition.
> > 
> > Signed-off-by: Jonas Ådahl <[email protected]>
> 
> I'll throw my Reviewed-by: Derek Foreman <[email protected]> on the
> pile for everything except patch 4, as Nils makes a compelling argument
> that we should actually do a huge amount of work instead of taking the
> easy way. ;)

Yea, I suspected it wouldn't be a popular patch. I also suspect they
will stay being warnings for some time :P

> 
> Any reason not to land these (except 3 which needs a warning fix?)

No, so I landed them.


Jonas

> 
> Thanks,
> Derek
> 
> > ---
> >  src/scanner.c | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/src/scanner.c b/src/scanner.c
> > index 406519f..3f79a44 100644
> > --- a/src/scanner.c
> > +++ b/src/scanner.c
> > @@ -612,10 +612,11 @@ start_element(void *data, const char *element_name, 
> > const char **atts)
> >     for (i = 0; atts[i]; i += 2) {
> >             if (strcmp(atts[i], "name") == 0)
> >                     name = atts[i + 1];
> > -           if (strcmp(atts[i], "version") == 0)
> > +           if (strcmp(atts[i], "version") == 0) {
> >                     version = strtouint(atts[i + 1]);
> >                     if (version == -1)
> >                             fail(&ctx->loc, "wrong version (%s)", atts[i + 
> > 1]);
> > +           }
> >             if (strcmp(atts[i], "type") == 0)
> >                     type = atts[i + 1];
> >             if (strcmp(atts[i], "value") == 0)
> > 
> 
_______________________________________________
wayland-devel mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Reply via email to