X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_oct.c;h=101f0d273e7f8893e07bdaa5206f3bfe3856e562;hp=a64648a606ab2ca6f5cf3d33a8228f05ef67221e;hb=28c5fe25e891098bcf5f18dfd0e3abe729dc340f;hpb=38dfcb07c905b2ba53e84678c3ce53c40e27b0b7 diff --git a/src/odr_oct.c b/src/odr_oct.c index a64648a..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; } @@ -88,15 +85,9 @@ int odr_cstring(ODR o, char **p, int opt, const char *name) { 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; } @@ -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 = *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; }