Fix yaz-marcdump segfault YAZ-801
[yaz-moved-to-github.git] / src / odr_bool.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) Index Data
3  * See the file LICENSE for details.
4  */
5
6 /**
7  * \file odr_bool.c
8  * \brief Implements ODR BOOLEAN codec
9  */
10 #if HAVE_CONFIG_H
11 #include <config.h>
12 #endif
13
14 #include <stdio.h>
15 #include "odr-priv.h"
16
17 /*
18  * Top level boolean en/decoder.
19  * Returns 1 on success, 0 on error.
20  */
21 int odr_bool(ODR o, Odr_bool **p, int opt, const char *name)
22 {
23     int res, cons = 0;
24
25     if (o->error)
26         return 0;
27     if (o->op->t_class < 0)
28     {
29         o->op->t_class = ODR_UNIVERSAL;
30         o->op->t_tag = ODR_BOOLEAN;
31     }
32     res = ber_tag(o, p, o->op->t_class, o->op->t_tag, &cons, opt, name);
33     if (res < 0)
34         return 0;
35     if (!res)
36         return odr_missing(o, opt, name);
37     if (o->direction == ODR_PRINT)
38     {
39         odr_prname(o, name);
40         odr_printf(o, "%s\n", (**p ? "TRUE" : "FALSE"));
41         return 1;
42     }
43     if (cons)
44         return 0;
45     if (o->direction == ODR_DECODE)
46         *p = (int *)odr_malloc(o, sizeof(int));
47     return ber_boolean(o, *p);
48 }
49 /*
50  * Local variables:
51  * c-basic-offset: 4
52  * c-file-style: "Stroustrup"
53  * indent-tabs-mode: nil
54  * End:
55  * vim: shiftwidth=4 tabstop=8 expandtab
56  */
57