Details
-
Type:
Defect
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Environment:Linux, Oracle JRE 1.6
-
Patch:Code
Description
"cell" can be null on this call to SoftReference.get():
https://github.com/clojure/core.cache/blob/master/src/main/clojure/clojure/core/cache.clj#L501
If the cache did not contain "item" in the call to (get cache item) in the let binding, but another thread pre-empts and adds it before the subsequent call to contains?, we'll attempt to call .get() on nil.
Would it perhaps be sufficient to just check whether cell is nil instead of calling contains? in the check on the previous line?
Attachments
Activity
Paul Stadig
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Attachment | 0001-CCACHE-28-fixes-concurrency-bug-in-has.patch [ 11844 ] |
Paul Stadig
made changes -
| Patch | Code [ 10001 ] |