Repository : ssh://git@open-mesh.org/batctl
On branch : next
commit c861e47068fd8817490f84a0ac0b1cd3ef3d5eb3 Author: Sven Eckelmann sven@narfation.org Date: Thu Jun 12 18:33:43 2014 +0200
batctl: Force \0 termination of string in bisect_iv
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 Signed-off-by: Marek Lindner mareklindner@neomailbox.ch
c861e47068fd8817490f84a0ac0b1cd3ef3d5eb3 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; }