~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/release-notes/bzr-2.4.txt

  • Committer: Florian Vichot
  • Date: 2011-10-04 18:43:55 UTC
  • mto: (6015.33.8 2.4)
  • mto: This revision was merged to the branch mainline in revision 6192.
  • Revision ID: florian.vichot@gmail.com-20111004184355-jbbnwz1d9nnotsn9
Fixed an infinite loop when creating a repo at the root of the filesystem, 
i.e. "/", due to posixpath.normpath() not collapsing 2 leading slashes into 
one, thus respecting the POSIX standard, but making relpath() loop infinitely.

Also, patched the files that were calling posixpath.normpath() directly, to
osutils.normpath() instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
* Return early from create_delta_index_from_delta given tiny inputs. This
43
43
  avoids raising a spurious MemoryError on certain platforms such as AIX.
44
44
  (John Arbash Meinel, #856731)
 
45
  
 
46
* Fixed an infinite loop when creating a repo at the root of the filesystem, 
 
47
  i.e. "/", due to posixpath.normpath() not collapsing 2 leading slashes into 
 
48
  one, thus respecting the POSIX standard, but making relpath() loop infinitely.
 
49
  (Florian Vichot, #861008)
45
50
 
46
51
Documentation
47
52
*************