summaryrefslogtreecommitdiff
path: root/recipes-multimedia/libgstomx-0.10/files/0001-gstomx_util-fix-strncpy-warning.patch
blob: 97bb2f371762623557345e9b31f32c97b2fef7fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From 19fa5402774e2dea5d9400395cfd88a60db33afe Mon Sep 17 00:00:00 2001
From: Max Krummenacher <max.krummenacher@toradex.com>
Date: Wed, 19 Sep 2018 21:11:15 +0000
Subject: [PATCH] gstomx_util: fix strncpy warning

| ./../gstomx_src/gst-openmax/omx/gstomx_util.c:329:7: error: 'strncpy' specified bound 128 equals destination size [-Werror=stringop-truncation]

Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
---
 omx/gstomx_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/omx/gstomx_util.c b/omx/gstomx_util.c
index e74521a..352d9f7 100644
--- a/omx/gstomx_util.c
+++ b/omx/gstomx_util.c
@@ -327,7 +327,7 @@ g_omx_core_init (GOmxCore * core)
       G_OMX_INIT_PARAM (param);
 
       strncpy ((char *) param.cRole, core->component_role,
-          OMX_MAX_STRINGNAME_SIZE);
+          OMX_MAX_STRINGNAME_SIZE - 1);
 
       OMX_SetParameter (core->omx_handle, OMX_IndexParamStandardComponentRole,
           &param);
-- 
2.13.6