From 901aaa5f5ae34df163ccf710580fb0de99e9ed79 Mon Sep 17 00:00:00 2001 From: Francis Deslauriers Date: Wed, 8 Mar 2017 14:32:31 -0500 Subject: [PATCH] Fix: use of uninitialized ret value in lttng_abi_open_metadata_stream MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes the following compiler warning: lttng-abi.c: In function ‘lttng_metadata_ioctl’: lttng-abi.c:971:6: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized] int ret; ^ Signed-off-by: Francis Deslauriers Signed-off-by: Mathieu Desnoyers --- lttng-abi.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lttng-abi.c b/lttng-abi.c index e193f437..478a5912 100644 --- a/lttng-abi.c +++ b/lttng-abi.c @@ -998,8 +998,11 @@ int lttng_abi_open_metadata_stream(struct file *channel_file) goto notransport; } - if (!lttng_kref_get(&session->metadata_cache->refcount)) + if (!lttng_kref_get(&session->metadata_cache->refcount)) { + ret = -EOVERFLOW; goto kref_error; + } + ret = lttng_abi_create_stream_fd(channel_file, stream_priv, <tng_metadata_ring_buffer_file_operations); if (ret < 0) -- 2.34.1