Skip to content

Commit e764dd4

Browse files
Darrick J. Wongcmaiolino
authored andcommitted
xfs: fix copy-paste error in previous fix
Chris Mason noticed that there is a copy-paste error in a recent change to xrep_dir_teardown that nulls out pointers after freeing the resources. Fixes: ba408d2 ("xfs: only call xf{array,blob}_destroy if we have a valid pointer") Link: https://lore.kernel.org/linux-xfs/20260205194211.2307232-1-clm@meta.com/ Reported-by: Chris Mason <clm@meta.com> Signed-off-by: "Darrick J. Wong" <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com> Signed-off-by: Carlos Maiolino <cem@kernel.org>
1 parent cddfa64 commit e764dd4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/xfs/scrub/dir_repair.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ xrep_dir_teardown(
177177
rd->dir_names = NULL;
178178
if (rd->dir_entries)
179179
xfarray_destroy(rd->dir_entries);
180-
rd->dir_names = NULL;
180+
rd->dir_entries = NULL;
181181
}
182182

183183
/* Set up for a directory repair. */

0 commit comments

Comments
 (0)