X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Fstring.c;fp=formats%2Fctf%2Ftypes%2Fstring.c;h=a8f75a976a00dc7a08733dc252dd7a0243d07a30;hp=4ab305249b7d096c50cc9cdf2db1b011010067f5;hb=df752f351b1ba0f8cd0b70ba328afa8d36bc31a9;hpb=c5e74408f9786219f6b44400dcf2098ab9cc78fb diff --git a/formats/ctf/types/string.c b/formats/ctf/types/string.c index 4ab30524..a8f75a97 100644 --- a/formats/ctf/types/string.c +++ b/formats/ctf/types/string.c @@ -35,6 +35,8 @@ int ctf_string_read(struct stream_pos *ppos, struct definition *definition) ctf_align_pos(pos, string_declaration->p.alignment); srcaddr = ctf_get_pos_addr(pos); + if (pos->offset == -EOF) + return -EFAULT; /* Not counting \0 */ max_len = pos->packet_size - pos->offset - 1; if (max_len < 0)