summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2021-02-18 09:41:36 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-02-19 14:39:20 +0000
commit02ad983e3fd7b6d3eda54836523f0afd3b3fc6c7 (patch)
tree212333295032525833023384826657a3b8a4c70e
parentaee40e4f06d1383a28cb5749b2e99682b50b2b14 (diff)
Remove assignment to variable which is never read
Highlighted by static code analysis. Change-Id: I0e0d33c66c3aac5135204212bea2d5d48bad3739 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> (cherry picked from commit 0f4b2ccea4a8701a83c37c612b0ad0e60063b7c0) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/network/kernel/qauthenticator.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/network/kernel/qauthenticator.cpp b/src/network/kernel/qauthenticator.cpp
index a8777962ee..4daf11cb3e 100644
--- a/src/network/kernel/qauthenticator.cpp
+++ b/src/network/kernel/qauthenticator.cpp
@@ -643,7 +643,6 @@ QHash<QByteArray, QByteArray> QAuthenticatorPrivate::parseDigestAuthenticationCh
++d;
if (d >= end)
break;
- start = d;
QByteArray value;
while (d < end) {
bool backslash = false;