diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # ChangeLog for resourcet
 
+## 1.2.4.2
+
+* Mask exceptions in `Acquire` allocation action
+
 ## 1.2.4.1
 
 * Document risk of using `forkIO` within a `ResourceT` [#441](https://github.com/snoyberg/conduit/pull/441)
diff --git a/Data/Acquire/Internal.hs b/Data/Acquire/Internal.hs
--- a/Data/Acquire/Internal.hs
+++ b/Data/Acquire/Internal.hs
@@ -70,8 +70,8 @@
 mkAcquire :: IO a -- ^ acquire the resource
           -> (a -> IO ()) -- ^ free the resource
           -> Acquire a
-mkAcquire create free = Acquire $ \restore -> do
-    x <- restore create
+mkAcquire create free = Acquire $ \_ -> do
+    x <- create
     return $! Allocated x (const $ free x)
 
 -- | Same as 'mkAcquire', but the cleanup function will be informed of /how/
@@ -83,8 +83,8 @@
     :: IO a -- ^ acquire the resource
     -> (a -> ReleaseType -> IO ()) -- ^ free the resource
     -> Acquire a
-mkAcquireType create free = Acquire $ \restore -> do
-    x <- restore create
+mkAcquireType create free = Acquire $ \_ -> do
+    x <- create
     return $! Allocated x (free x)
 
 -- | Allocate the given resource and provide it to the provided function. The
diff --git a/resourcet.cabal b/resourcet.cabal
--- a/resourcet.cabal
+++ b/resourcet.cabal
@@ -1,5 +1,5 @@
 Name:                resourcet
-Version:             1.2.4.1
+Version:             1.2.4.2
 Synopsis:            Deterministic allocation and freeing of scarce resources.
 description:         Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/resourcet>.
 License:             BSD3
