Add out-of-bound checks
[babeltrace.git] / formats / ctf / types / struct.c
CommitLineData
6dc2ca62
MD
1/*
2 * Common Trace Format
3 *
11796b96 4 * Structure format access functions.
6dc2ca62 5 *
ccd7e1c8 6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6dc2ca62 7 *
ccd7e1c8
MD
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
de0ba614 14 *
ccd7e1c8
MD
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
6dc2ca62
MD
17 */
18
d79865b9 19#include <babeltrace/ctf/types.h>
6dc2ca62 20
c5e74408 21int ctf_struct_rw(struct stream_pos *ppos, struct definition *definition)
11796b96 22{
d11e9c49 23 struct declaration *declaration = definition->declaration;
46322b33
MD
24 struct ctf_stream_pos *pos = ctf_pos(ppos);
25
d11e9c49 26 ctf_align_pos(pos, declaration->alignment);
c5e74408 27 return struct_rw(ppos, definition);
11796b96 28}
This page took 0.024389 seconds and 4 git commands to generate.