X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=client%2Fadmin.c;fp=client%2Fadmin.c;h=50ddaf88f37501e4018bdb9a5dad96e59a70d8bd;hp=019910a794a9f65f518826533f4b48a474eb4a5d;hb=7ef1b50f481cda83d012cc3d69d83f9313836f1f;hpb=1ffd6698cc631866391bf0d646f58907c32ab086 diff --git a/client/admin.c b/client/admin.c index 019910a..50ddaf8 100644 --- a/client/admin.c +++ b/client/admin.c @@ -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;