X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=client%2Fadmin.c;h=693233cd6ff19b0eaa9357e45320fe0c758f1bd4;hb=3fe8d724fd45258f340a8396877aa93bd0a93d00;hp=019910a794a9f65f518826533f4b48a474eb4a5d;hpb=ee6ab2ee3a9ee1a8c65d7272ec7fba1d886f5af0;p=yaz-moved-to-github.git diff --git a/client/admin.c b/client/admin.c index 019910a..693233c 100644 --- a/client/admin.c +++ b/client/admin.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2009 Index Data * See the file LICENSE for details. */ @@ -236,8 +236,14 @@ int cmd_adm_import(const char *arg) oct->len = oct->size = status.st_size; oct->buf = (unsigned char *) odr_malloc (out, oct->size); - fread (oct->buf, 1, oct->size, inf); - fclose (inf); + if (fread(oct->buf, 1, oct->size, inf) != oct->size) + { + printf("Incomplete read of file %s\n", fname); + } + if (fclose(inf)) + { + printf("Close failed for file %s\n", fname); + } segment->segmentRecords[segment->num_segmentRecords++] = rec;