[#63] Fix missing thaw exception cause (@cespare)

This commit is contained in:
Peter Taoussanis 2015-02-18 17:20:48 +07:00
parent af293fec7b
commit df1d83275d

View file

@ -599,7 +599,8 @@
(thaw-from-in! dis)) (thaw-from-in! dis))
(catch Exception e (catch Exception e
(ex "Decryption/decompression failure, or data unfrozen/damaged."))))) (ex "Decryption/decompression failure, or data unfrozen/damaged."
e)))))
;; This is hackish and can actually currently result in JVM core dumps ;; This is hackish and can actually currently result in JVM core dumps
;; due to buggy Snappy behaviour, Ref. http://goo.gl/mh7Rpy. ;; due to buggy Snappy behaviour, Ref. http://goo.gl/mh7Rpy.