X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_oct.c;h=2928e43ded52b3a5216adb042dd57423db04d958;hp=a31ba85db5772b23ae8af362c60c189b864d972f;hb=cabcc223cd47503763e7c42969e3be30c58276af;hpb=8d691989077a0addcbd840d769dce6700f3d9622 diff --git a/src/ber_oct.c b/src/ber_oct.c index a31ba85..2928e43 100644 --- a/src/ber_oct.c +++ b/src/ber_oct.c @@ -1,11 +1,9 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2013 Index Data * See the file LICENSE for details. - * - * $Id: ber_oct.c,v 1.5 2007-01-03 08:42:15 adam Exp $ */ -/** +/** * \file ber_oct.c * \brief Implements ber_octetstring * @@ -18,12 +16,16 @@ #endif #include "odr-priv.h" +#include +#include int ber_octetstring(ODR o, Odr_oct *p, int cons) { int res, len; const unsigned char *base; +#if OCT_SIZE unsigned char *c; +#endif switch (o->direction) { @@ -53,9 +55,14 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) odr_seterror(o, OOTHER, 16); return 0; } +#if OCT_SIZE + assert(p->size == 0); + assert(p->len == 0); + yaz_log(YLOG_LOG, "DECODE OCTET1 p->size=%d p->len=%d", p->size, p->len); if (len + 1 > p->size - p->len) { c = (unsigned char *)odr_malloc(o, p->size += len + 1); + yaz_log(YLOG_LOG, "DECODE COPY p->size=%d p->len=%d", p->size, p->len); if (p->len) memcpy(c, p->buf, p->len); p->buf = c; @@ -63,11 +70,19 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) if (len) memcpy(p->buf + p->len, o->bp, len); p->len += len; + yaz_log(YLOG_LOG, "DECODE OCTET2 p->size=%d p->len=%d", p->size, p->len); o->bp += len; /* the final null is really not part of the buffer, but */ /* it helps somes applications that assumes C strings */ if (len) p->buf[p->len] = '\0'; +#else + p->len = len; + p->buf = odr_malloc(o, len + 1); + memcpy(p->buf, o->bp, len); + p->buf[len] = '\0'; + o->bp += len; +#endif return 1; case ODR_ENCODE: if ((res = ber_enclen(o, p->len, 5, 0)) < 0) @@ -87,6 +102,7 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab