X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fber_oct.c;h=5a36482750315d623709602d7df559c2e392cbda;hb=a7585fd1220c684189091e7fba2c5d6cf436031e;hp=017a118704b3f858e7a2261fbbff2c71501d0261;hpb=379504a233e3e2cc85bca1e7b6d864f1395aec7c;p=yaz-moved-to-github.git diff --git a/src/ber_oct.c b/src/ber_oct.c index 017a118..5a36482 100644 --- a/src/ber_oct.c +++ b/src/ber_oct.c @@ -1,9 +1,9 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data + * Copyright (C) 1995-2013 Index Data * See the file LICENSE for details. */ -/** +/** * \file ber_oct.c * \brief Implements ber_octetstring * @@ -16,12 +16,13 @@ #endif #include "odr-priv.h" +#include +#include int ber_octetstring(ODR o, Odr_oct *p, int cons) { int res, len; - const unsigned char *base; - unsigned char *c; + const char *base; switch (o->direction) { @@ -51,21 +52,11 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) odr_seterror(o, OOTHER, 16); return 0; } - if (len + 1 > p->size - p->len) - { - c = (unsigned char *)odr_malloc(o, p->size += len + 1); - if (p->len) - memcpy(c, p->buf, p->len); - p->buf = c; - } - if (len) - memcpy(p->buf + p->len, o->bp, len); - p->len += len; + p->len = len; + p->buf = odr_malloc(o, len + 1); + memcpy(p->buf, o->bp, len); + p->buf[len] = '\0'; 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'; return 1; case ODR_ENCODE: if ((res = ber_enclen(o, p->len, 5, 0)) < 0)