X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fodr_oct.c;h=101f0d273e7f8893e07bdaa5206f3bfe3856e562;hb=612ac7d30003582e44d4184c830eee7f1a1a0443;hp=fc065191f8983bc7aa6f14fa05bf5ec0006c3f0b;hpb=cabcc223cd47503763e7c42969e3be30c58276af;p=yaz-moved-to-github.git diff --git a/src/odr_oct.c b/src/odr_oct.c index fc06519..101f0d2 100644 --- a/src/odr_oct.c +++ b/src/odr_oct.c @@ -45,9 +45,6 @@ int odr_octetstring(ODR o, Odr_oct **p, int opt, const char *name) if (o->direction == ODR_DECODE) { *p = (Odr_oct *)odr_malloc(o, sizeof(Odr_oct)); -#if OCT_SIZE - (*p)->size= 0; -#endif (*p)->len = 0; (*p)->buf = 0; } @@ -86,17 +83,11 @@ int odr_cstring(ODR o, char **p, int opt, const char *name) t = (Odr_oct *)odr_malloc(o, sizeof(Odr_oct)); /* wrapper for octstring */ if (o->direction == ODR_ENCODE) { - t->buf = (unsigned char *) *p; + t->buf = *p; t->len = strlen(*p); -#if OCT_SIZE - t->size = t->len; -#endif } else { -#if OCT_SIZE - t->size= 0; -#endif t->len = 0; t->buf = 0; } @@ -149,7 +140,7 @@ int odr_iconv_string(ODR o, char **p, int opt, const char *name) char *outbuf = (char *) odr_malloc (o, outleft); size_t ret; - t->buf = (unsigned char *) outbuf; + t->buf = outbuf; ret = yaz_iconv(o->op->iconv_handle, &inbuf, &inleft, &outbuf, &outleft); @@ -167,24 +158,15 @@ int odr_iconv_string(ODR o, char **p, int opt, const char *name) return 0; } t->len = outbuf - (char*) t->buf; -#if OCT_SIZE - t->size = t->len; -#endif } if (!t->buf) { - t->buf = (unsigned char *) *p; + t->buf = *p; t->len = strlen(*p); -#if OCT_SIZE - t->size = t->len; -#endif } } else { -#if OCT_SIZE - t->size= 0; -#endif t->len = 0; t->buf = 0; }