Author: stsp
Date: Tue May 31 23:36:50 2011
New Revision: 1129966

URL: http://svn.apache.org/viewvc?rev=1129966&view=rev
Log:
* subversion/libsvn_diff/parse-diff.c
  (scan_eol): Remove a redundant 'break'. The loop will exit without it.

Modified:
    subversion/trunk/subversion/libsvn_diff/parse-diff.c

Modified: subversion/trunk/subversion/libsvn_diff/parse-diff.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_diff/parse-diff.c?rev=1129966&r1=1129965&r2=1129966&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_diff/parse-diff.c (original)
+++ subversion/trunk/subversion/libsvn_diff/parse-diff.c Tue May 31 23:36:50 
2011
@@ -316,9 +316,6 @@ scan_eol(const char **eol, apr_file_t *f
               SVN_ERR(svn_io_file_read_full2(file, buf, 1, &len, &eof, pool));
               if (!eof && len == 1 && buf[0] == '\n')
                 eol_str = "\r\n";
-
-              /* We got either \r or \r\n, get outta here. */
-              break;
             }
         }
 


Reply via email to