Quellcode durchsuchen

Btrfs: remove unused variable in __process_changed_new_xattr()

Variable 'p' is not used any more. So, remove it.

Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Tsutomu Itoh vor 12 Jahren
Ursprung
Commit
ba1eeaac99
1 geänderte Dateien mit 0 neuen und 2 gelöschten Zeilen
  1. 0 2
      fs/btrfs/send.c

+ 0 - 2
fs/btrfs/send.c

@@ -3479,7 +3479,6 @@ static int __process_changed_new_xattr(int num, struct btrfs_key *di_key,
 	struct send_ctx *sctx = ctx;
 	struct send_ctx *sctx = ctx;
 	char *found_data = NULL;
 	char *found_data = NULL;
 	int found_data_len  = 0;
 	int found_data_len  = 0;
-	struct fs_path *p = NULL;
 
 
 	ret = find_xattr(sctx, sctx->parent_root, sctx->right_path,
 	ret = find_xattr(sctx, sctx->parent_root, sctx->right_path,
 			sctx->cmp_key, name, name_len, &found_data,
 			sctx->cmp_key, name, name_len, &found_data,
@@ -3498,7 +3497,6 @@ static int __process_changed_new_xattr(int num, struct btrfs_key *di_key,
 	}
 	}
 
 
 	kfree(found_data);
 	kfree(found_data);
-	fs_path_free(sctx, p);
 	return ret;
 	return ret;
 }
 }