summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-11-07 14:17:53 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-11-07 14:17:53 +0100
commitf7b50d78770e6195ce50deaad87a6e91be1ba35d (patch)
treed8c323e0d4ccb15094aa4a0d53c70e686639b4c6
parent65bc6825240175ee4140e0fe8bb2daaf2ebd68e8 (diff)
downloadcurl-bagder/altsvc-dead-store.tar.gz
altsvc: minimize variable scope and avoid "DEAD_STORE"bagder/altsvc-dead-store
-rw-r--r--lib/altsvc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/altsvc.c b/lib/altsvc.c
index 6a2a5f57b..4ab77fdfc 100644
--- a/lib/altsvc.c
+++ b/lib/altsvc.c
@@ -451,7 +451,6 @@ CURLcode Curl_altsvc_parse(struct Curl_easy *data,
{
const char *p = value;
size_t len;
- enum alpnid dstalpnid = srcalpnid; /* the same by default */
char namebuf[MAX_ALTSVC_HOSTLEN] = "";
char alpnbuf[MAX_ALTSVC_ALPNLEN] = "";
struct altsvc *as;
@@ -478,7 +477,7 @@ CURLcode Curl_altsvc_parse(struct Curl_easy *data,
do {
if(*p == '=') {
/* [protocol]="[host][:port]" */
- dstalpnid = alpn2alpnid(alpnbuf);
+ enum alpnid dstalpnid = alpn2alpnid(alpnbuf); /* the same by default */
p++;
if(*p == '\"') {
const char *dsthost = "";