You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/09/16 15:27:20 UTC

svn commit: r997742 - /subversion/trunk/subversion/libsvn_client/patch.c

Author: stsp
Date: Thu Sep 16 13:27:20 2010
New Revision: 997742

URL: http://svn.apache.org/viewvc?rev=997742&view=rev
Log:
Follow-up to r997741:
* subversion/libsvn_client/patch.c
  (match_hunk): Don't bother tweaking CONTENT_INFO->EOF, since seek_to_line()
   takes care of that for us.

Modified:
    subversion/trunk/subversion/libsvn_client/patch.c

Modified: subversion/trunk/subversion/libsvn_client/patch.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/patch.c?rev=997742&r1=997741&r2=997742&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/patch.c (original)
+++ subversion/trunk/subversion/libsvn_client/patch.c Thu Sep 16 13:27:20 2010
@@ -898,7 +898,6 @@ match_hunk(svn_boolean_t *matched, targe
   *matched = lines_matched && hunk_eof && hunk_line->len == 0;
 
   SVN_ERR(seek_to_line(content_info, saved_line, iterpool));
-  content_info->eof = FALSE;
 
   svn_pool_destroy(iterpool);