Author: stsp
Date: Tue Jul 27 13:55:52 2010
New Revision: 979704
URL: http://svn.apache.org/viewvc?rev=979704&view=rev
Log:
* subversion/libsvn_client/patch.c
(patch_target_t, init_patch_target): Remove unused field 'patch' from
the patch target data structure.
Found by: dannas
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=979704&r1=979703&r2=979704&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/patch.c (original)
+++ subversion/trunk/subversion/libsvn_client/patch.c Tue Jul 27 13:55:52 2010
@@ -133,9 +133,6 @@ typedef struct prop_patch_target_t {
} prop_patch_target_t;
typedef struct patch_target_t {
- /* The patch being applied. */
- const svn_patch_t *patch;
-
/* The target path as it appeared in the patch file,
* but in canonicalised form. */
const char *canon_path_from_patchfile;
@@ -565,7 +562,6 @@ init_patch_target(patch_target_t **patch
target = apr_pcalloc(result_pool, sizeof(*target));
/* All other fields in target are FALSE or NULL due to apr_pcalloc(). */
- target->patch = patch;
target->db_kind = svn_node_none;
target->kind_on_disk = svn_node_none;
target->content_info = content_info;