~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to subversion/libsvn_fs_fs/fs.c

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2014-05-20 22:45:32 UTC
  • mfrom: (0.2.12)
  • Revision ID: package-import@ubuntu.com-20140520224532-4fec3gohdzyy692g
Tags: 1.8.9-1
* New upstream release
* Merge changes from Ubuntu:
  - Add DEB-8 test for Apache functionality
  - debian/rules: Create pot file on build.
  - debian/rules: Ensure the doxygen output directory exists
  - Move svn2cl to subversion-tools' Suggests on Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
      SVN_ERR(svn_mutex__init(&ffsd->txn_current_lock,
99
99
                              SVN_FS_FS__USE_LOCK_MUTEX, common_pool));
100
100
 
 
101
      /* We also need a mutex for synchronizing access to the active
 
102
         transaction list and free transaction pointer.  This one is
 
103
         enabled unconditionally. */
101
104
      SVN_ERR(svn_mutex__init(&ffsd->txn_list_lock,
102
 
                              SVN_FS_FS__USE_LOCK_MUTEX, common_pool));
 
105
                              TRUE, common_pool));
103
106
 
104
107
      key = apr_pstrdup(common_pool, key);
105
108
      status = apr_pool_userdata_set(ffsd, key, NULL, common_pool);