You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2015/09/19 10:55:16 UTC

svn commit: r1703960 - /subversion/trunk/subversion/libsvn_diff/parse-diff.c

Author: rhuijben
Date: Sat Sep 19 08:55:15 2015
New Revision: 1703960

URL: http://svn.apache.org/viewvc?rev=1703960&view=rev
Log:
* subversion/libsvn_diff/parse-diff.c
  (parse_binary_patch): Folowing up on r1703925, fix variable reference.

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=1703960&r1=1703959&r2=1703960&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_diff/parse-diff.c (original)
+++ subversion/trunk/subversion/libsvn_diff/parse-diff.c Sat Sep 19 08:55:15 2015
@@ -1472,7 +1472,7 @@ parse_binary_patch(svn_patch_t *patch, a
      * don't end up skipping the line. It may contain a patch or hunk header.*/
     SVN_ERR(svn_io_file_seek(apr_file, APR_SET, &last_line, scratch_pool));
   else if (in_dst
-           && ((bpatch->dst_end > bpatch_dst_start) || !bpatch->dst_filesize))
+           && ((bpatch->dst_end > bpatch->dst_start) || !bpatch->dst_filesize))
     {
       patch->binary_patch = bpatch; /* SUCCESS */
     }