ax25: missplaced sock_put(sk)

This patch moves a missplaced sock_put(sk) after
bh_unlock_sock(sk)
like in other parts of AX25 driver.

Signed-off-by: Bernard Pidoux <f6bvp@free.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Bernard Pidoux F6BVP and committed by David S. Miller d71b0e9c fe5f0980

+1 -1
+1 -1
net/ax25/ax25_ds_timer.c
··· 112 if (sk) { 113 sock_hold(sk); 114 ax25_destroy_socket(ax25); 115 - sock_put(sk); 116 bh_unlock_sock(sk); 117 } else 118 ax25_destroy_socket(ax25); 119 return;
··· 112 if (sk) { 113 sock_hold(sk); 114 ax25_destroy_socket(ax25); 115 bh_unlock_sock(sk); 116 + sock_put(sk); 117 } else 118 ax25_destroy_socket(ax25); 119 return;