From 26912f82a78d959860d4614a0786250044b33eb2 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Thu, 3 Dec 2020 04:34:14 +0100 Subject: [PATCH] And you tell me NOW!? --- src/ProxyParser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProxyParser.h b/src/ProxyParser.h index aee2ac1..95ee3d1 100644 --- a/src/ProxyParser.h +++ b/src/ProxyParser.h @@ -133,7 +133,7 @@ public: uint16_t hostLength = _cond_byte_swap(header.len); /* We must have all the data available */ - if (data.length() < 16 + hostLength) { + if (data.length() < 16u + hostLength) { return {false, 0}; }