From d776c522099885cb82fa8c2236e6cecf17dc76aa Mon Sep 17 00:00:00 2001 From: szaka Date: Sat, 2 Feb 2008 12:34:06 +0000 Subject: [PATCH] ntfs_index_lookup(): fix typo in previous commit --- libntfs-3g/index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libntfs-3g/index.c b/libntfs-3g/index.c index 1587bf86..247fbd12 100644 --- a/libntfs-3g/index.c +++ b/libntfs-3g/index.c @@ -690,7 +690,7 @@ int ntfs_index_lookup(const void *key, const int key_len, errno = EINVAL; ntfs_log_perror("Index block size (%d) is smaller than the " "sector size (%d)", icx->block_size, NTFS_BLOCK_SIZE); - return err_out; + goto err_out; } if (ni->vol->cluster_size <= icx->block_size)