X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fber_oct.c;h=a332846a84584c49ed700e94d71b10994f51fe7c;hb=6aa60532542a01bfe78be0c91cbf57ce7cf851ce;hp=e2ba4327329c2361a1f80c7adcdcec1c08e80e69;hpb=4d531a1a9131d69c3b6c27fbac42837e22cff61c;p=yaz-moved-to-github.git diff --git a/odr/ber_oct.c b/odr/ber_oct.c index e2ba432..a332846 100644 --- a/odr/ber_oct.c +++ b/odr/ber_oct.c @@ -3,7 +3,7 @@ * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * - * $Id: ber_oct.c,v 1.20 2003-01-06 08:20:27 adam Exp $ + * $Id: ber_oct.c,v 1.21 2003-03-11 11:03:31 adam Exp $ */ #if HAVE_CONFIG_H #include @@ -20,9 +20,9 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) switch (o->direction) { case ODR_DECODE: - if ((res = ber_declen(o->bp, &len)) < 0) + if ((res = ber_declen(o->bp, &len, odr_max(o))) < 0) { - o->error = OPROTO; + odr_seterror(o, OPROTO, 14); return 0; } o->bp += res; @@ -37,9 +37,14 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) /* primitive octetstring */ if (len < 0) { - o->error = OOTHER; + odr_seterror(o, OOTHER, 15); return 0; } + if (len > odr_max(o)) + { + odr_seterror(o, OOTHER, 16); + return 0; + } if (len + 1 > p->size - p->len) { c = (unsigned char *)odr_malloc(o, p->size += len + 1); @@ -65,6 +70,6 @@ int ber_octetstring(ODR o, Odr_oct *p, int cons) return 0; return 1; case ODR_PRINT: return 1; - default: o->error = OOTHER; return 0; + default: odr_seterror(o, OOTHER, 17); return 0; } }