[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r1543985 - in /subversion/trunk/subversion/bindings/javahl: native/ native/jniwrapper/ src/org/apache/subversion/javahl/types/ src/org/apache/subversion/javahl/util/ tests/org/apache/subversion/javahl/

From: Bert Huijben <bert_at_qqmail.nl>
Date: Thu, 21 Nov 2013 02:11:48 +0000

Branko,


I might have found the cause of the error. See snippet below


Bert





Sent from Windows Mail





From: Branko Čibej
Sent: ‎Thursday‎, ‎November‎ ‎21‎, ‎2013 ‎12‎:‎43‎ ‎AM
To: commits_at_subversion.apache.org


+class KeywordHashBuilder
+{
+public:
+ explicit KeywordHashBuilder(const SVN::Pool& pool)
+ : m_pool(pool),
+ m_hash(apr_hash_make(pool.getPool()))
+ {}
+
+ void operator()(const std::string& key, const Java::ByteArray& value)
+ {
+ Java::ByteArray::Contents val(value);
+ apr_hash_set(m_hash, key.c_str(), key.size(), val.get_string(m_pool));
+ }

<<<<<<<

The key must be duplicated in the pool, or hash lookups will look into memory with unknown lifetime when they compare the key.

<<<<<<<


+
+ apr_hash_t* get() const
+ {
+ return m_hash;
+ }
+
+private:
+ const SVN::Pool& m_pool;
+ apr_hash_t* const m_hash;
+};
+
Received on 2013-11-21 03:20:32 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.