[
https://issues.apache.org/jira/browse/CASSANDRA-2951?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13072018#comment-13072018
]
Hudson commented on CASSANDRA-2951:
-----------------------------------
Integrated in Cassandra #978 (See
[https://builds.apache.org/job/Cassandra/978/])
fix potential use of free'd native memory interface/SerializingCache
patch by jbellis; reviewed by slebresne for CASSANDRA-2951
jbellis :
http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1151625
Files :
* /cassandra/trunk/src/java/org/apache/cassandra/cache/FreeableMemory.java
* /cassandra/trunk/src/java/org/apache/cassandra/cache/SerializingCache.java
* /cassandra/trunk/CHANGES.txt
> FreeableMemory can be accessed after it is invalid
> --------------------------------------------------
>
> Key: CASSANDRA-2951
> URL: https://issues.apache.org/jira/browse/CASSANDRA-2951
> Project: Cassandra
> Issue Type: Bug
> Components: Core
> Affects Versions: 0.8.0
> Reporter: Jonathan Ellis
> Assignee: Jonathan Ellis
> Priority: Minor
> Fix For: 0.8.3
>
> Attachments: 2951.txt
>
>
> SerializingCache.get looks like this:
> {code}
> public V get(Object key)
> {
> FreeableMemory mem = map.get(key);
> if (mem == null)
> return null;
> return deserialize(mem);
> }
> {code}
> If a cache object is evicted or replaced after the get happens, but before
> deserialize completes, we will trigger an assertion failure (if asserts are
> enabled) or segfault (if they are not).
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira