X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fenum.c;h=e0a2b4d49d9cfc9049caa6c8011c0bb410f081c0;hp=f8fc9e57f1b0f423e0e24c7dd21f2db170c80b11;hb=f60efc0e475b3c2fca3b2afc584615f6c482c9e7;hpb=c5e74408f9786219f6b44400dcf2098ab9cc78fb diff --git a/formats/ctf/types/enum.c b/formats/ctf/types/enum.c index f8fc9e57..e0a2b4d4 100644 --- a/formats/ctf/types/enum.c +++ b/formats/ctf/types/enum.c @@ -3,7 +3,9 @@ * * Enumeration mapping strings (quarks) from/to integers. * - * Copyright 2010, 2011 - Mathieu Desnoyers + * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation + * + * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -17,6 +19,7 @@ */ #include +#include #include #include @@ -36,13 +39,21 @@ int ctf_enum_read(struct stream_pos *ppos, struct definition *definition) ret = ctf_integer_read(ppos, &integer_definition->p); if (ret) return ret; - if (!integer_declaration->signedness) + if (!integer_declaration->signedness) { qs = enum_uint_to_quark_set(enum_declaration, integer_definition->value._unsigned); - else + if (!qs) { + fprintf(stderr, "[warning] Unknown value %" PRIu64 " in enum.\n", + integer_definition->value._unsigned); + } + } else { qs = enum_int_to_quark_set(enum_declaration, integer_definition->value._signed); - assert(qs); + if (!qs) { + fprintf(stderr, "[warning] Unknown value %" PRId64 " in enum.\n", + integer_definition->value._signed); + } + } /* unref previous quark set */ if (enum_definition->value) g_array_unref(enum_definition->value);