This is a part of patch 4faf653307789150f1d40383e95c85a086630378 ("batctl: Force null termination of string after strncpy") but was forgotten before it was submitted to the maintainers.
Signed-off-by: Sven Eckelmann sven@narfation.org --- bisect_iv.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/bisect_iv.c b/bisect_iv.c index e5efb89..b748813 100644 --- a/bisect_iv.c +++ b/bisect_iv.c @@ -365,6 +365,7 @@ static int routing_table_new(char *orig, char *next_hop, char *old_next_hop, cha if ((rt_table->num_entries == 1) || (rt_table->num_entries != j + 1)) { i = rt_table->num_entries; strncpy(rt_table->entries[i - 1].orig, orig, NAME_LEN); + rt_table->entries[i - 1].orig[NAME_LEN - 1] = '\0'; rt_table->entries[i - 1].next_hop = next_hop_node; rt_table->entries[i - 1].flags = rt_flag; }