Check for truncated source address when receiving packets

This commit is contained in:
Miroslav Lichvar
2014-08-15 12:54:32 +02:00
parent 192f74f0a1
commit ff4abc69c3
2 changed files with 6 additions and 0 deletions

View File

@@ -1644,6 +1644,9 @@ read_from_cmd_socket(void *anything)
return;
}
if (from_length > sizeof (where_from))
LOG_FATAL(LOGF_CmdMon, "Truncated source address");
read_length = status;
LCL_ReadRawTime(&now);