fsm: delete the timer when changing state

In osmo_fsm_inst_state_chg(), we need to stop any not-yet-expired timer
of the old state before transitioning into the new state.

Change-Id: I2558f9a7027a877ea8263785ed3c8d70d2513996
diff --git a/src/fsm.c b/src/fsm.c
index 049663d..67db182 100644
--- a/src/fsm.c
+++ b/src/fsm.c
@@ -318,6 +318,9 @@
 		return -EPERM;
 	}
 
+	/* delete the old timer */
+	osmo_timer_del(&fi->timer);
+
 	if (st->onleave)
 		st->onleave(fi, new_state);