Author: neels
Date: Tue Jun 29 21:51:06 2010
New Revision: 959119
URL: http://svn.apache.org/viewvc?rev=959119&view=rev
Log:
Another fix for r959112: Try to un-break the javahl bindings.
* subversion/bindings/javahl/native/CreateJ.cpp
(CreateJ::Status):
Pass NULL for the two new parameters of svn_wc__node_get_copyfrom_info().
Modified:
subversion/trunk/subversion/bindings/javahl/native/CreateJ.cpp
Modified: subversion/trunk/subversion/bindings/javahl/native/CreateJ.cpp
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/CreateJ.cpp?rev=959119&r1=959118&r2=959119&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/CreateJ.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/CreateJ.cpp Tue Jun 29
21:51:06 2010
@@ -581,7 +581,8 @@ CreateJ::Status(svn_wc_context_t *wc_ctx
if (JNIUtil::isJavaExceptionThrown())
POP_AND_RETURN_NULL;
- SVN_JNI_ERR(svn_wc__node_get_copyfrom_info(©from_url,
+ SVN_JNI_ERR(svn_wc__node_get_copyfrom_info(NULL, NULL,
+ ©from_url,
©from_rev,
&is_copy_target,
wc_ctx, local_abspath,