X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fodr.c;h=b44078a004b0fc181880de367c84886d2c4fcf98;hb=3ffa5dbc563e15bccb012f3d3d00a993f87ace82;hp=0366db90605953d56e2c45a1a08cb4c2d7e2e316;hpb=42d3d8a6486c495357574e5db0fc736834d8ba40;p=yaz-moved-to-github.git diff --git a/odr/odr.c b/odr/odr.c index 0366db9..b44078a 100644 --- a/odr/odr.c +++ b/odr/odr.c @@ -4,7 +4,22 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: odr.c,v $ - * Revision 1.14 1995-06-19 12:38:46 quinn + * Revision 1.19 1995-11-01 13:54:41 quinn + * Minor adjustments + * + * Revision 1.18 1995/09/29 17:12:22 quinn + * Smallish + * + * Revision 1.17 1995/09/29 17:01:50 quinn + * More Windows work + * + * Revision 1.16 1995/09/27 15:02:57 quinn + * Modified function heads & prototypes. + * + * Revision 1.15 1995/08/15 12:00:22 quinn + * Updated External + * + * Revision 1.14 1995/06/19 12:38:46 quinn * Added BER dumper. * * Revision 1.13 1995/05/22 11:32:02 quinn @@ -53,7 +68,7 @@ #include #include -#include +#include #include Odr_null *ODR_NULLVAL = "NULL"; /* the presence of a null value */ @@ -73,6 +88,11 @@ char *odr_errlist[] = "Length of constructed type different from sum of members" }; +char *odr_errmsg(int n) +{ + return odr_errlist[n]; +} + void odr_perror(ODR o, char *message) { fprintf(stderr, "%s: %s\n", message, odr_errlist[o->error]); @@ -92,8 +112,8 @@ ODR odr_createmem(int direction) { struct odr *r; - if (!(r = malloc(sizeof(*r)))) - return 0; + if (!(r = xmalloc(sizeof(*r)))) + return 0; r->direction = direction; r->print = stderr; r->buf = 0; @@ -119,16 +139,17 @@ void odr_reset(ODR o) o->stackp = -1; odr_release_mem(o->mem); o->mem = 0; + o->choice_bias = -1; } void odr_destroy(ODR o) { odr_release_mem(o->mem); if (o->ecb.buf && o->ecb.can_grow) - free(o->ecb.buf); + xfree(o->ecb.buf); if (o->print != stderr) - fclose(o->print); - free(o); + fclose(o->print); + xfree(o); } void odr_setbuf(ODR o, char *buf, int len, int can_grow) @@ -146,6 +167,6 @@ char *odr_getbuf(ODR o, int *len, int *size) { *len = o->ecb.top; if (size) - *size = o->ecb.size; + *size = o->ecb.size; return (char*) o->ecb.buf; }