aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Tassi2016-05-23 18:08:43 +0200
committerEnrico Tassi2016-06-06 14:04:33 -0400
commitca833edfb9ce2a40b0b83b11a825ae5dc833c4cb (patch)
treea707fcc8a522b2a222ef8d42380d4302642b9d64
parent821937aee71bf9439158e27e06f7b4f74289b209 (diff)
STM: fix error reporting of par:
-rw-r--r--stm/stm.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/stm/stm.ml b/stm/stm.ml
index c1158928df..a3e380c7b7 100644
--- a/stm/stm.ml
+++ b/stm/stm.ml
@@ -1653,8 +1653,7 @@ end = struct (* {{{ *)
match resp with
| RespBuiltSubProof o -> t_assign (`Val o); `Stay ((),[])
| RespError msg ->
- let info = Stateid.add ~valid:t_state Exninfo.null t_state_fb in
- let e = (RemoteException msg, info) in
+ let e = (RemoteException msg, Exninfo.null) in
t_assign (`Exn e);
t_kill ();
`Stay ((),[])