[Webkit-unassigned] [Bug 91121] [BlackBerry] Update about:* pages

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 12 13:13:39 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=91121





--- Comment #3 from Yong Li <yoli at rim.com>  2012-07-12 13:13:39 PST ---
(From update of attachment 152038)
View in context: https://bugs.webkit.org/attachment.cgi?id=152038&action=review

> Source/WebKit/blackberry/WebCoreSupport/AboutData.cpp:47
> +static int strcmpNatural(const char *a, const char *b)
> +{
> +    for (; *a == *b && *a; ++a, ++b) { }
> +    if (*a >= '0' && *a <= '9' && *b >= 'A')
> +        return 1;
> +    if (*b >= '0' && *b <= '9' && *a >= 'A')
> +        return -1;
> +    return *b - *a;
> +}

Can you add some description for this function?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list