X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fber_any.c;h=905b0c4c31db3868fbd10e32eac6cc9791aa73d1;hb=431d7da079bc03eccb53ee2567ee35693ba6de24;hp=0c73bd73c6f24fe27327bd08352850847d6e3a8d;hpb=346311370361ec56af79a2f7756c9a8db4f55a68;p=yaz-moved-to-github.git diff --git a/src/ber_any.c b/src/ber_any.c index 0c73bd7..905b0c4 100644 --- a/src/ber_any.c +++ b/src/ber_any.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2006, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2012 Index Data * See the file LICENSE for details. - * - * $Id: ber_any.c,v 1.5 2006-08-24 13:10:03 adam Exp $ */ /** @@ -111,10 +109,9 @@ int completeBER_n(const unsigned char *buf, int len, int level) { if (b[0] == 0 && b[1] == 0) break; - if (!(res = completeBER_n(b, len, level+1))) - return 0; - if (res == -1) - return -1; + res = completeBER_n(b, len, level+1); + if (res <= 0) + return res; b += res; len -= res; } @@ -136,6 +133,7 @@ int completeBER(const unsigned char *buf, int len) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab