X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fber_oct.c;h=d86e4145cc576b9e8a63f441d9306b8beb6ad276;hp=25829c10ee9076166e6a3c8203cf3ae2c426252a;hb=38dfcb07c905b2ba53e84678c3ce53c40e27b0b7;hpb=01c6a008c766d8666675a53dade6846a1ff65825 diff --git a/src/ber_oct.c b/src/ber_oct.c index 25829c1..d86e414 100644 --- a/src/ber_oct.c +++ b/src/ber_oct.c @@ -58,11 +58,9 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) #if OCT_SIZE assert(p->size == 0); assert(p->len == 0); - yaz_log(YLOG_LOG, "DECODE OCTET1 p->size=%d p->len=%d", p->size, p->len); if (len + 1 > p->size - p->len) { c = (unsigned char *)odr_malloc(o, p->size += len + 1); - yaz_log(YLOG_LOG, "DECODE COPY p->size=%d p->len=%d", p->size, p->len); if (p->len) memcpy(c, p->buf, p->len); p->buf = c; @@ -70,7 +68,6 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) if (len) memcpy(p->buf + p->len, o->bp, len); p->len += len; - yaz_log(YLOG_LOG, "DECODE OCTET2 p->size=%d p->len=%d", p->size, p->len); o->bp += len; /* the final null is really not part of the buffer, but */ /* it helps somes applications that assumes C strings */