From 066496a56c13fde1f087d90d4b67208f57895a04 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 16 Oct 2006 12:21:17 +0000 Subject: [PATCH] decrease number of branches --- src/core/ngx_string.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/core/ngx_string.c b/src/core/ngx_string.c index 3716df661..886fe00c6 100644 --- a/src/core/ngx_string.c +++ b/src/core/ngx_string.c @@ -593,7 +593,7 @@ ngx_atotm(u_char *line, size_t n) ngx_int_t ngx_hextoi(u_char *line, size_t n) { - u_char ch; + u_char c, ch; ngx_int_t value; if (n == 0) { @@ -608,13 +608,10 @@ ngx_hextoi(u_char *line, size_t n) continue; } - if (ch >= 'A' && ch <= 'F') { - value = value * 16 + (ch - 'A' + 10); - continue; - } + c = (u_char) (ch | 0x20); - if (ch >= 'a' && ch <= 'f') { - value = value * 16 + (ch - 'a' + 10); + if (c >= 'a' && c <= 'f') { + value = value * 16 + (c - 'a' + 10); continue; }