You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by sv...@apache.org on 2013/06/19 06:00:35 UTC

svn commit: r1494437 - in /subversion/branches/1.8.x: ./ STATUS subversion/libsvn_fs_fs/fs_fs.c

Author: svn-role
Date: Wed Jun 19 04:00:35 2013
New Revision: 1494437

URL: http://svn.apache.org/r1494437
Log:
Merge r1491770 from trunk:

 * r1491770
   Eliminate revprop buffer size limit.
   Justification:
     This removes an inconsistency; we don't limit object sizes anywhere
     else. Particularly, we allowed for unlimited revprop sizes when setting
     them but had a 16MB limit in the getter.
   Votes:
     +1: stefan2, blair, danielsh

Modified:
    subversion/branches/1.8.x/   (props changed)
    subversion/branches/1.8.x/STATUS
    subversion/branches/1.8.x/subversion/libsvn_fs_fs/fs_fs.c

Propchange: subversion/branches/1.8.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1491770

Modified: subversion/branches/1.8.x/STATUS
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev=1494437&r1=1494436&r2=1494437&view=diff
==============================================================================
--- subversion/branches/1.8.x/STATUS (original)
+++ subversion/branches/1.8.x/STATUS Wed Jun 19 04:00:35 2013
@@ -223,15 +223,6 @@ Veto-blocked changes:
 Approved changes:
 =================
 
- * r1491770
-   Eliminate revprop buffer size limit.
-   Justification:
-     This removes an inconsistency; we don't limit object sizes anywhere
-     else. Particularly, we allowed for unlimited revprop sizes when setting
-     them but had a 16MB limit in the getter.
-   Votes:
-     +1: stefan2, blair, danielsh
-
  * r1492005
    Optimize 'svn mergeinfo --show-revs' network usage.
    Justification:

Modified: subversion/branches/1.8.x/subversion/libsvn_fs_fs/fs_fs.c
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/subversion/libsvn_fs_fs/fs_fs.c?rev=1494437&r1=1494436&r2=1494437&view=diff
==============================================================================
--- subversion/branches/1.8.x/subversion/libsvn_fs_fs/fs_fs.c (original)
+++ subversion/branches/1.8.x/subversion/libsvn_fs_fs/fs_fs.c Wed Jun 19 04:00:35 2013
@@ -3664,7 +3664,7 @@ parse_packed_revprops(svn_fs_t *fs,
   svn_string_t *compressed
       = svn_stringbuf__morph_into_string(revprops->packed_revprops);
   svn_stringbuf_t *uncompressed = svn_stringbuf_create_empty(pool);
-  SVN_ERR(svn__decompress(compressed, uncompressed, 0x1000000));
+  SVN_ERR(svn__decompress(compressed, uncompressed, APR_SIZE_MAX));
 
   /* read first revision number and number of revisions in the pack */
   stream = svn_stream_from_stringbuf(uncompressed, scratch_pool);