Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
From: mathieu.desnoyers@efficios.com (Mathieu Desnoyers)
Subject: [lttng-dev] [PATCH babeltrace] Fix lint warnings
Date: Fri, 15 Nov 2013 02:02:42 +0000 (UTC)	[thread overview]
Message-ID: <1280291905.67994.1384480962969.JavaMail.zimbra@efficios.com> (raw)
In-Reply-To: <1384476057-32135-1-git-send-email-jeremie.galarneau@efficios.com>

----- Original Message -----
> From: "J?r?mie Galarneau" <jeremie.galarneau@efficios.com>
> To: lttng-dev at lists.lttng.org
> Sent: Thursday, November 14, 2013 7:40:57 PM
> Subject: [lttng-dev] [PATCH babeltrace] Fix lint warnings
> 
> ** CID 1125105: Unchecked close() return value
> formats/ctf/writer/stream.c: 521
> 
> ** CID 1124085: Use after free
> formats/ctf/writer/event-fields.c: 1128
> 
> ** CID 1124088: Dereference before null check
> formats/ctf/writer/stream.c: 371

Merged, thanks!

Mathieu

> 
> Signed-off-by: J?r?mie Galarneau <jeremie.galarneau at efficios.com>
> ---
>  formats/ctf/writer/event-fields.c | 7 +++++--
>  formats/ctf/writer/stream.c       | 7 +++++--
>  2 files changed, 10 insertions(+), 4 deletions(-)
> 
> diff --git a/formats/ctf/writer/event-fields.c
> b/formats/ctf/writer/event-fields.c
> index 30fe578..ff970c0 100644
> --- a/formats/ctf/writer/event-fields.c
> +++ b/formats/ctf/writer/event-fields.c
> @@ -1125,7 +1125,10 @@ int bt_ctf_field_structure_serialize(struct
> bt_ctf_field *field,
>  	while (!ctf_pos_access_ok(pos,
>  		offset_align(pos->offset,
>  			field->type->declaration->alignment))) {
> -		increase_packet_size(pos);
> +		ret = increase_packet_size(pos);
> +		if (ret) {
> +			goto end;
> +		}
>  	}
>  
>  	ctf_align_pos(pos, field->type->declaration->alignment);
> @@ -1139,7 +1142,7 @@ int bt_ctf_field_structure_serialize(struct
> bt_ctf_field *field,
>  			break;
>  		}
>  	}
> -
> +end:
>  	return ret;
>  }
>  
> diff --git a/formats/ctf/writer/stream.c b/formats/ctf/writer/stream.c
> index f03f170..ac89429 100644
> --- a/formats/ctf/writer/stream.c
> +++ b/formats/ctf/writer/stream.c
> @@ -368,7 +368,7 @@ int bt_ctf_stream_flush(struct bt_ctf_stream *stream)
>  	int ret = 0;
>  	size_t i;
>  	uint64_t timestamp_begin, timestamp_end;
> -	struct bt_ctf_stream_class *stream_class = stream->stream_class;
> +	struct bt_ctf_stream_class *stream_class;
>  	struct bt_ctf_field *integer = NULL;
>  	struct ctf_stream_pos packet_context_pos;
>  
> @@ -385,6 +385,7 @@ int bt_ctf_stream_flush(struct bt_ctf_stream *stream)
>  		stream->flush.func(stream, stream->flush.data);
>  	}
>  
> +	stream_class = stream->stream_class;
>  	timestamp_begin = ((struct bt_ctf_event *) g_ptr_array_index(
>  		stream->events, 0))->timestamp;
>  	timestamp_end = ((struct bt_ctf_event *) g_ptr_array_index(
> @@ -518,7 +519,9 @@ void bt_ctf_stream_destroy(struct bt_ctf_ref *ref)
>  
>  	stream = container_of(ref, struct bt_ctf_stream, ref_count);
>  	ctf_fini_pos(&stream->pos);
> -	close(stream->pos.fd);
> +	if (close(stream->pos.fd)) {
> +		perror("close");
> +	}
>  	bt_ctf_stream_class_put(stream->stream_class);
>  	g_ptr_array_free(stream->events, TRUE);
>  	g_free(stream);
> --
> 1.8.4.2
> 
> 
> _______________________________________________
> lttng-dev mailing list
> lttng-dev at lists.lttng.org
> http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
> 

-- 
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com



      reply	other threads:[~2013-11-15  2:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-15  0:40 Jérémie Galarneau
2013-11-15  2:02 ` Mathieu Desnoyers [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1280291905.67994.1384480962969.JavaMail.zimbra@efficios.com \
    --to=mathieu.desnoyers@efficios.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox