Goodbye to Odr_oct.size
[yaz-moved-to-github.git] / src / odr_oct.c
index a64648a..101f0d2 100644 (file)
@@ -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;
     }