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

« back to all changes in this revision

Viewing changes to subversion/libsvn_fs_fs/fs_fs.c

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2014-02-20 20:38:10 UTC
  • mfrom: (0.2.11)
  • Revision ID: package-import@ubuntu.com-20140220203810-w61omsda8fs70pta
Tags: 1.8.8-1
* New upstream release.  Refresh patches.
  - Remove backported patches sqlite_3.8.x_workaround & swig-pl_build_fix
  - Fix integer overflows with 32-bit svnserv, which could cause an infinite
    loop (Closes: #738840) or inaccurate statistics (Closes: #738841)
  - Work around SQLite not honoring umask when creating rep-cache.db.
    (Closes: #735446)
  - Includes security fix:
    + CVE-2014-0032: mod_dav_svn crash when handling certain requests with
      SVNListParentPath on  (Closes: #737815)
* Add a subversion-dbg package.  (Closes: #508147)
* Bump libdb5.1-dev → libdb5.3-dev  (Closes: #738650)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5380
5380
      /* Read target's base rep if any. */
5381
5381
      SVN_ERR(create_rep_state(&rep_state, &rep_args, NULL, NULL,
5382
5382
                               target->data_rep, fs, pool));
5383
 
      /* If that matches source, then use this delta as is. */
 
5383
 
 
5384
      /* If that matches source, then use this delta as is.
 
5385
         Note that we want an actual delta here.  E.g. a self-delta would
 
5386
         not be good enough. */
5384
5387
      if (rep_args->is_delta
5385
 
          && (rep_args->is_delta_vs_empty
5386
 
              || (rep_args->base_revision == source->data_rep->revision
5387
 
                  && rep_args->base_offset == source->data_rep->offset)))
 
5388
          && rep_args->base_revision == source->data_rep->revision
 
5389
          && rep_args->base_offset == source->data_rep->offset)
5388
5390
        {
5389
5391
          /* Create the delta read baton. */
5390
5392
          struct delta_read_baton *drb = apr_pcalloc(pool, sizeof(*drb));