X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fber_any.c;h=bebfbb3fb3e5ef7fe9d25d6b9cc6637746fac448;hb=c74f92579fac45600836ca695a973fd11c1a20db;hp=7b56f0fbc958ea680c4639e9d2c98ded9641160d;hpb=bf4149c63ad2e11429e302a89f472de52b4d7ce8;p=yaz-moved-to-github.git diff --git a/odr/ber_any.c b/odr/ber_any.c index 7b56f0f..bebfbb3 100644 --- a/odr/ber_any.c +++ b/odr/ber_any.c @@ -1,10 +1,16 @@ /* - * Copyright (c) 1995, Index Data + * Copyright (c) 1995-1999, Index Data * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: ber_any.c,v $ - * Revision 1.13 1997-05-14 06:53:56 adam + * Revision 1.15 1999-01-08 11:23:20 adam + * Added const modifier to some of the BER/ODR encoding routines. + * + * Revision 1.14 1998/02/11 11:53:34 adam + * Changed code so that it compiles as C++. + * + * Revision 1.13 1997/05/14 06:53:56 adam * C++ support. * * Revision 1.12 1995/09/29 17:12:15 quinn @@ -60,7 +66,7 @@ int ber_any(ODR o, Odr_any **p) o->error = OPROTO; return 0; } - (*p)->buf = odr_malloc(o, res); + (*p)->buf = (unsigned char *)odr_malloc(o, res); memcpy((*p)->buf, o->bp, res); (*p)->len = (*p)->size = res; o->bp += res; @@ -77,10 +83,10 @@ int ber_any(ODR o, Odr_any **p) /* * Return length of BER-package or 0. */ -int completeBER(unsigned char *buf, int len) +int completeBER(const unsigned char *buf, int len) { int res, ll, zclass, tag, cons; - unsigned char *b = buf; + const unsigned char *b = buf; if (!len) return 0;