aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2022-01-06 07:15:45 +0100
committerLuca Deri <deri@ntop.org>2022-01-06 07:15:45 +0100
commitf24f68f59d6adf3622dd6f83b94a160f57cf6471 (patch)
tree0f394510669956493e08040fc7bb08d153e52543
parent8f805a8163d33854d686b3c40bc69f4016494554 (diff)
Invalid check
-rw-r--r--src/lib/protocols/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c
index d6c77e736..7a6fa1078 100644
--- a/src/lib/protocols/http.c
+++ b/src/lib/protocols/http.c
@@ -633,7 +633,7 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_
if(flow->http.nat_ip == NULL) {
len = packet->forwarded_line.len;
flow->http.nat_ip = ndpi_malloc(len + 1);
- if(flow->http.nat_ip == NULL) {
+ if(flow->http.nat_ip != NULL) {
strncpy(flow->http.nat_ip, (char*)packet->forwarded_line.ptr, len);
flow->http.nat_ip[len] = '\0';
}