From 2f663987c558077f34505ea28dce183678d8175e Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 21 Aug 2018 14:59:29 +0100 Subject: do not use strlen as a variable name --- frontends/gtk/login.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontends/gtk/login.c b/frontends/gtk/login.c index 7cb45b263..96639faea 100644 --- a/frontends/gtk/login.c +++ b/frontends/gtk/login.c @@ -121,7 +121,7 @@ get_login_description(struct nsurl *url, size_t url_l; nserror res; char *str = NULL; - int strlen; + int slen; const char *key; res = nsurl_get(url, NSURL_SCHEME | NSURL_HOST, &url_s, &url_l); @@ -144,12 +144,12 @@ get_login_description(struct nsurl *url, } else { /* no message so fallback */ const char *fmt = "The site %s is requesting your username and password. The realm is \"%s\""; - strlen = snprintf(str, 0, fmt, url_s, realm) + 1; - str = malloc(strlen); + slen = snprintf(str, 0, fmt, url_s, realm) + 1; + str = malloc(slen); if (str == NULL) { res = NSERROR_NOMEM; } else { - snprintf(str, strlen, fmt, url_s, realm); + snprintf(str, slen, fmt, url_s, realm); *out_str = str; } } -- cgit v1.2.3