From 325e077c98da859696796c87ee258d56eb6a5e44 Mon Sep 17 00:00:00 2001 From: Xiaochang Liu <49294745+SInginc@users.noreply.github.com> Date: Fri, 12 Jan 2024 22:29:42 +0800 Subject: [PATCH] removed comment out code in readstat_sas.c --- src/sas/readstat_sas.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/sas/readstat_sas.c b/src/sas/readstat_sas.c index 07dc849..542d466 100644 --- a/src/sas/readstat_sas.c +++ b/src/sas/readstat_sas.c @@ -246,11 +246,6 @@ readstat_error_t sas_read_header(readstat_io_t *io, sas_header_info_t *hinfo, hinfo->creation_time = sas_convert_time(creation_time, creation_time_diff, epoch); hinfo->modification_time = sas_convert_time(modification_time, modification_time_diff, epoch); - // if (io->seek(16, READSTAT_SEEK_CUR, io->io_ctx) == -1) { - // retval = READSTAT_ERROR_SEEK; - // goto cleanup; - // } - uint32_t header_size, page_size; if (io->read(&header_size, sizeof(uint32_t), io->io_ctx) < sizeof(uint32_t)) {