X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_tag.c;h=ba83507abb595e15312c3d249375ae15ca1f9c04;hb=be821514c869d68186361b5aab6bbfd1aa60e087;hp=685238d2f4dc782a7db4b0e7ea0ce1b5e83a6cbb;hpb=b7c6d3740131ba03800c5c2cc935dc2626d12bb3;p=yaz-moved-to-github.git diff --git a/src/odr_tag.c b/src/odr_tag.c index 685238d..ba83507 100644 --- a/src/odr_tag.c +++ b/src/odr_tag.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: odr_tag.c,v 1.5 2005-08-11 14:21:55 adam Exp $ + * $Id: odr_tag.c,v 1.7 2007-03-19 21:08:13 adam Exp $ */ /** * \file odr_tag.c @@ -35,10 +35,10 @@ int odr_implicit_settag(ODR o, int zclass, int tag) { if (o->error) return 0; - if (o->t_class < 0) + if (o->op->t_class < 0) { - o->t_class = zclass; - o->t_tag = tag; + o->op->t_class = zclass; + o->op->t_tag = tag; } return 1; } @@ -53,7 +53,7 @@ int odr_initmember(ODR o, void *p, int size) *pp = (char *)odr_malloc(o, size); else if (!*pp) { - o->t_class = -1; + o->op->t_class = -1; return 0; } return 1;