st-hal: fix incorrect client session state

For sound model merge usecase, when one of the session is resumed
to active state after pause, resume event can be ignored by the
other client and thus the pause flag is not reset.
Handle the resume event in active state to clear the pause flag.

Change-Id: Ic6703a1182c78820975799693706e199ba83e0bf
diff --git a/st_session.c b/st_session.c
index 2ae2d81..2fb506d 100644
--- a/st_session.c
+++ b/st_session.c
@@ -4591,6 +4591,11 @@
         STATE_TRANSITION(st_ses, loaded_state_fn);
         break;
 
+    case ST_SES_EV_RESUME:
+        if (stc_ses->paused == true)
+            stc_ses->paused = false;
+        break;
+
     case ST_SES_EV_STOP:
         status = stop_session(st_ses, hw_ses, false);
         if (status)