nfqws: fix uninitialized host value

This commit is contained in:
bol-van 2024-09-19 18:27:35 +03:00
parent ebc2324edf
commit 8fccf29e4a

View File

@ -165,7 +165,7 @@ bool HttpReplyLooksLikeDPIRedirect(const uint8_t *data, size_t len, const char *
} }
size_t HttpPos(enum httpreqpos tpos_type, size_t hpos_pos, const uint8_t *http, size_t sz) size_t HttpPos(enum httpreqpos tpos_type, size_t hpos_pos, const uint8_t *http, size_t sz)
{ {
const uint8_t *method, *host; const uint8_t *method, *host=NULL;
int i; int i;
switch(tpos_type) switch(tpos_type)