From: relan Date: Mon, 5 Dec 2016 10:30:47 +0000 (+0300) Subject: Remove unused field of struct iterator. X-Git-Tag: android-x86-9.0-r1~82 X-Git-Url: http://git.osdn.net/view?p=android-x86%2Fexternal-exfat.git;a=commitdiff_plain;h=e10d9d0b4176f7cfcff9c336309efd22de1ed6d4 Remove unused field of struct iterator. --- diff --git a/libexfat/node.c b/libexfat/node.c index 3f49fb2..a5491b1 100644 --- a/libexfat/node.c +++ b/libexfat/node.c @@ -30,7 +30,6 @@ struct iterator { cluster_t cluster; off_t offset; - int contiguous; char* chunk; }; @@ -99,7 +98,6 @@ static int opendir(struct exfat* ef, const struct exfat_node* dir, exfat_bug("not a directory"); it->cluster = dir->start_cluster; it->offset = 0; - it->contiguous = IS_CONTIGUOUS(*dir); it->chunk = malloc(CLUSTER_SIZE(*ef->sb)); if (it->chunk == NULL) { @@ -120,7 +118,6 @@ static void closedir(struct iterator* it) { it->cluster = 0; it->offset = 0; - it->contiguous = 0; free(it->chunk); it->chunk = NULL; }