commit:     edb6cc2444538f6e689a76add962e53240fc8fc3
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  5 07:37:42 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Aug  5 07:40:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edb6cc24

dev-libs/totem-pl-parser: Add missing patch

Closes: https://bugs.gentoo.org/806464
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 ...plparser-Fix-uninitialized-variable-error.patch | 30 ++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git 
a/dev-libs/totem-pl-parser/files/3.26.6-plparser-Fix-uninitialized-variable-error.patch
 
b/dev-libs/totem-pl-parser/files/3.26.6-plparser-Fix-uninitialized-variable-error.patch
new file mode 100644
index 00000000000..1666332f353
--- /dev/null
+++ 
b/dev-libs/totem-pl-parser/files/3.26.6-plparser-Fix-uninitialized-variable-error.patch
@@ -0,0 +1,30 @@
+From 87fc47f6d992b65d2baaa987bb985bc388457a9b Mon Sep 17 00:00:00 2001
+From: David GUGLIELMI <david.guglie...@gmail.com>
+Date: Sun, 11 Jul 2021 22:41:42 +0200
+Subject: [PATCH] plparser: Fix uninitialized variable error
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Build failed on systems using -Os cflags with:
+ - totem-pl-parser.c:1776:14: error: ‘ret’ may be used uninitialized in this 
function [-Werror=maybe-uninitialized]
+---
+ plparse/totem-pl-parser.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/plparse/totem-pl-parser.c b/plparse/totem-pl-parser.c
+index 404deb3..32fd435 100644
+--- a/plparse/totem-pl-parser.c
++++ b/plparse/totem-pl-parser.c
+@@ -1760,7 +1760,7 @@ totem_pl_parser_glob_is_ignored (TotemPlParser *parser,
+ {
+       GHashTableIter iter;
+       gpointer key;
+-      int ret;
++      int ret = FNM_NOMATCH;
+ 
+       g_mutex_lock (&parser->priv->ignore_mutex);
+       g_hash_table_iter_init (&iter, parser->priv->ignore_globs);
+-- 
+2.31.1
+

Reply via email to