diff options
Diffstat (limited to 'net/ipv4/arp.c')
| -rw-r--r-- | net/ipv4/arp.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c index c29d75d8f1b1..090e9991ac2a 100644 --- a/net/ipv4/arp.c +++ b/net/ipv4/arp.c @@ -1304,7 +1304,9 @@ static void arp_format_neigh_entry(struct seq_file *seq,  		hbuffer[k++] = hex_asc_lo(n->ha[j]);  		hbuffer[k++] = ':';  	} -	hbuffer[--k] = 0; +	if (k != 0) +		--k; +	hbuffer[k] = 0;  #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)  	}  #endif  | 
