All of lore.kernel.org
 help / color / mirror / Atom feed
From: pebenito@ieee.org (Chris PeBenito)
To: refpolicy@oss.tresys.com
Subject: [refpolicy] [PATCH v3] fc_sort: avoid compiler warning/error
Date: Tue, 6 Jun 2017 20:07:49 -0400	[thread overview]
Message-ID: <106e6ea2-192c-1af3-fc08-4738c1aea125@ieee.org> (raw)
In-Reply-To: <1496700493.32176.2.camel@trentalancia.com>

On 06/05/2017 06:08 PM, Guido Trentalancia via refpolicy wrote:
> Fix a "-Werror=implicit-fallthrough" compiler warning/error on
> the switch statement.
>
> This third version (v3) fixes a bug introduced in the first
> version and improves the style over the second version.
>
> Signed-off-by: Guido Trentalancia <guido@trentalancia.com>
> ---
>  support/fc_sort.c |   10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
>
> --- a/support/fc_sort.c	2017-06-05 23:49:57.280624866 +0200
> +++ b/support/fc_sort.c	2017-06-06 00:04:48.419621222 +0200
> @@ -292,14 +292,16 @@ void fc_fill_data(file_context_node_t *f
>  			/* If a escape character is found,
>  			 *  skip the next character. */
>  			c++;
> +			break;
>  		default:
> -			/* If no meta character has been found yet,
> -			 *  add one to the stem length. */
> -			if (!fc_node->meta)
> -				fc_node->stem_len++;
>  			break;
>  		}
>
> +		/* If no meta character has been found yet,
> +		 * add one to the stem length. */
> +		if (!fc_node->meta)
> +			fc_node->stem_len++;
> +
>  		fc_node->str_len++;
>  		c++;
>  	}

This doesn't look like a valid change since the block you're doing 
shouldn't be done if the current character is a metacharacter.

-- 
Chris PeBenito

  reply	other threads:[~2017-06-07  0:07 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-05 14:56 [refpolicy] [PATCH] fc_sort: avoid compiler warning/error Guido Trentalancia
2017-06-05 15:04 ` [refpolicy] [PATCH v2] " Guido Trentalancia
2017-06-05 14:20   ` Christian Göttsche
2017-06-05 15:22     ` Guido Trentalancia
2017-06-05 16:31   ` Jason Zaman
2017-06-05 22:08   ` [refpolicy] [PATCH v3] " Guido Trentalancia
2017-06-07  0:07     ` Chris PeBenito [this message]
2017-06-07  5:27       ` Guido Trentalancia
2017-06-07 23:16     ` Chris PeBenito

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=106e6ea2-192c-1af3-fc08-4738c1aea125@ieee.org \
    --to=pebenito@ieee.org \
    --cc=refpolicy@oss.tresys.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.