Quoting Henrik Gramner (2015-09-28 16:50:31)
> The previous implementation was behaving incorrectly in some corner cases.
> ---
>  tests/checkasm/checkasm.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/checkasm/checkasm.c b/tests/checkasm/checkasm.c
> index 013e197..9219a83 100644
> --- a/tests/checkasm/checkasm.c
> +++ b/tests/checkasm/checkasm.c
> @@ -280,12 +280,16 @@ static void print_benchs(CheckasmFunc *f)
>  /* ASCIIbetical sort except preserving natural order for numbers */
>  static int cmp_func_names(const char *a, const char *b)
>  {
> +    const char *start = a;
>      int ascii_diff, digit_diff;
>  
> -    for (; !(ascii_diff = *a - *b) && *a; a++, b++);
> +    for (; !(ascii_diff = *(const unsigned char*)a - *(const unsigned 
> char*)b) && *a; a++, b++);
>      for (; av_isdigit(*a) && av_isdigit(*b); a++, b++);
>  
> -    return (digit_diff = av_isdigit(*a) - av_isdigit(*b)) ? digit_diff : 
> ascii_diff;
> +    if (a > start && av_isdigit(a[-1]) && (digit_diff = av_isdigit(*a) - 
> av_isdigit(*b)))
> +        return digit_diff;
> +
> +    return ascii_diff;
>  }
>  
>  /* Perform a tree rotation in the specified direction and return the new 
> root */
> -- 
> 1.9.1
> 

Thanks, queued.

-- 
Anton Khirnov
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to