X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fber_int.c;h=8eac32e5d0e57ae93ec16402d7d79012e689eb52;hb=5bc2ee09e4dff0f872ce738a5327bced915e3474;hp=d642aff1110dc778f449e71db5773a6d293704da;hpb=77c5a4fca8b516fd39b8ba213daed17a465a6b2a;p=yaz-moved-to-github.git diff --git a/src/ber_int.c b/src/ber_int.c index d642aff..8eac32e 100644 --- a/src/ber_int.c +++ b/src/ber_int.c @@ -3,7 +3,7 @@ * See the file LICENSE for details. */ -/** +/** * \file ber_int.c * \brief Implements BER INTEGER encoding and decoding. * @@ -95,7 +95,7 @@ int ber_decinteger(const unsigned char *buf, Odr_int *val, int max) if ((res = ber_declen(b, &len, max)) < 0) return -1; if (len+res > max || len < 0) /* out of bounds or indefinite encoding */ - return -1; + return -1; if (len > (int) sizeof(uval)) /* let's be reasonable, here */ return -1; b += res;