From: Adam Dickmeiss Date: Wed, 11 Sep 2013 08:05:58 +0000 (+0200) Subject: Remove 3 yaz_log from old ber_oct code X-Git-Tag: v5.0.0~45 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=38dfcb07c905b2ba53e84678c3ce53c40e27b0b7;hp=01c6a008c766d8666675a53dade6846a1ff65825 Remove 3 yaz_log from old ber_oct code --- 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 */