X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_oid.c;h=fef26ea542f101daf80d8fd638771e541f373c1e;hp=1231968a75057db614313e172b81e6071aba5d89;hb=68bbd857190c6e29727ca1f5070fe6d8e5102bbb;hpb=5242cb5a8634bfa38b9333ff7f903e718ac6e292 diff --git a/src/ber_oid.c b/src/ber_oid.c index 1231968..fef26ea 100644 --- a/src/ber_oid.c +++ b/src/ber_oid.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2012 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ @@ -25,7 +25,7 @@ int ber_oidc(ODR o, Odr_oid *p, int max_oid_size) switch (o->direction) { case ODR_DECODE: - if ((res = ber_declen(o->bp, &len, odr_max(o))) < 1) + if ((res = ber_declen(o->op->bp, &len, odr_max(o))) < 1) { odr_seterror(o, OPROTO, 18); return 0; @@ -35,7 +35,7 @@ int ber_oidc(ODR o, Odr_oid *p, int max_oid_size) odr_seterror(o, OPROTO, 19); return 0; } - o->bp += res; + o->op->bp += res; if (len > odr_max(o)) { odr_seterror(o, OPROTO, 20); @@ -53,10 +53,10 @@ int ber_oidc(ODR o, Odr_oid *p, int max_oid_size) return 0; } id <<= 7; - id |= *o->bp & 0X7F; + id |= *o->op->bp & 0X7F; len--; } - while (*(o->bp++) & 0X80); + while (*(o->op->bp++) & 0X80); if (id < 0) {