summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2021-02-18 09:41:36 +0100
committerAlex Blasche <alexander.blasche@qt.io>2021-02-19 09:51:18 +0100
commit0f4b2ccea4a8701a83c37c612b0ad0e60063b7c0 (patch)
tree4837f1efada033c3ea5cbe2bb3147288359ce753 /src
parente9a7ea6639b303f7313d84aceb8020e6650816b4 (diff)
Remove assignment to variable which is never read
Highlighted by static code analysis. Pick-to: 6.1 Change-Id: I0e0d33c66c3aac5135204212bea2d5d48bad3739 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'src')
-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;