Fixed possible buf in proto.c
[yaz-moved-to-github.git] / odr / odr_null.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_null.c,v $
7  * Revision 1.4  1995-03-08 12:12:26  quinn
8  * Added better error checking.
9  *
10  * Revision 1.3  1995/02/10  18:57:25  quinn
11  * More in the way of error-checking.
12  *
13  * Revision 1.2  1995/02/09  15:51:49  quinn
14  * Works better now.
15  *
16  * Revision 1.1  1995/02/02  16:21:54  quinn
17  * First kick.
18  *
19  */
20
21 #include <odr.h>
22
23 /*
24  * Top level null en/decoder.
25  * Returns 1 on success, 0 on error.
26  */
27 int odr_null(ODR o, int **p, int opt)
28 {
29     int res, cons = 0;
30     static int nullval = 0;
31
32     if (o->error)
33         return 0;
34     if (o->t_class < 0)
35     {
36         o->t_class = ODR_UNIVERSAL;
37         o->t_tag = ODR_NULL;
38     }
39     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
40         return 0;
41     if (!res)
42         return opt;
43     if (o->direction == ODR_PRINT)
44     {
45         fprintf(o->print, "%sNULL\n", odr_indent(o));
46         return 1;
47     }
48     if (cons)
49     {
50         o->error = OPROTO;
51         return 0;
52     }
53     if (o->direction == ODR_DECODE)
54         *p = &nullval;
55     return ber_null(o, *p);
56 }