X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_oct.c;h=fc065191f8983bc7aa6f14fa05bf5ec0006c3f0b;hp=f359c4c5a1969670f0560755556263d335ad781d;hb=cabcc223cd47503763e7c42969e3be30c58276af;hpb=f720562471a064dba92a465d999aa833e59d69b1 diff --git a/src/odr_oct.c b/src/odr_oct.c index f359c4c..fc06519 100644 --- a/src/odr_oct.c +++ b/src/odr_oct.c @@ -45,7 +45,9 @@ 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; } @@ -85,11 +87,16 @@ int odr_cstring(ODR o, char **p, int opt, const char *name) if (o->direction == ODR_ENCODE) { t->buf = (unsigned char *) *p; - t->size = t->len = strlen(*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; } @@ -159,17 +166,25 @@ int odr_iconv_string(ODR o, char **p, int opt, const char *name) odr_seterror(o, ODATA, 44); return 0; } - t->size = t->len = outbuf - (char*) t->buf; + t->len = outbuf - (char*) t->buf; +#if OCT_SIZE + t->size = t->len; +#endif } if (!t->buf) { t->buf = (unsigned char *) *p; - t->size = t->len = strlen(*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; }