X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_util.c;h=39591063d28b3856fb2b41665cb8a1ec04bb34b9;hb=bb84694ae5b1951689fe049bef536e5a73deb208;hp=a5c64d670eb4648859ce0c96f40865be1ce3c017;hpb=69b1d8e7b437179163fe97b7cbead51a56835f2a;p=yaz-moved-to-github.git diff --git a/src/odr_util.c b/src/odr_util.c index a5c64d6..3959106 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2013 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ /** @@ -32,16 +32,16 @@ int odp_more_chunks(ODR o, const char *base, int len) return 0; if (len < 0) /* indefinite length */ { - if (*o->bp == 0 && *(o->bp + 1) == 0) + if (*o->op->bp == 0 && *(o->op->bp + 1) == 0) { - o->bp += 2; + o->op->bp += 2; return 0; } else return 1; } else - return o->bp - base < len; + return o->op->bp - base < len; } Odr_oid *odr_oiddup_nmem(NMEM nmem, const Odr_oid *o)