You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2010/05/19 19:05:22 UTC

svn commit: r946282 - /subversion/trunk/subversion/libsvn_wc/diff.c

Author: hwright
Date: Wed May 19 17:05:21 2010
New Revision: 946282

URL: http://svn.apache.org/viewvc?rev=946282&view=rev
Log:
Fix build failure introduced in r946276.

* subversion/libsvn_wc/diff.c
  (get_nearest_pristine_text_as_file): Use the right variable name.

Modified:
    subversion/trunk/subversion/libsvn_wc/diff.c

Modified: subversion/trunk/subversion/libsvn_wc/diff.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/diff.c?rev=946282&r1=946281&r2=946282&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/diff.c (original)
+++ subversion/trunk/subversion/libsvn_wc/diff.c Wed May 19 17:05:21 2010
@@ -174,7 +174,7 @@ get_nearest_pristine_text_as_file(const 
      ### base text from the pristine store anyway and use tempfiles (or
      ### streams, hopefully) for diffing, so all this horrible statting
      ### the disk for text bases, and this hack, will just go away. */
-  SVN_ERR(svn_io_check_path(*result_abspath, &kind, pool));
+  SVN_ERR(svn_io_check_path(*result_abspath, &kind, result_pool));
   if (kind == svn_node_none)
     *result_abspath = NULL;