mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
libnss: add upstream patch to fix uninitialized variable warning
Fixes: http://autobuild.buildroot.net/results/47e611036be12844ebca093ddd8fe95c326c6056/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
7027bf022b
commit
7c670327d3
24
package/libnss/0003-it-uninitialized-fix.patch
Normal file
24
package/libnss/0003-it-uninitialized-fix.patch
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User catdesk <catdesk@tuta.io>
|
||||||
|
# Date 1477710600 -7200
|
||||||
|
# Sat Oct 29 05:10:00 2016 +0200
|
||||||
|
# Node ID b9ef971b94ab110302d49255339077bc1b4aed7f
|
||||||
|
# Parent eb8c96563cd70aa69d48b01516085f7d2fb46178
|
||||||
|
Bug 1313846 - Declare 'it = NULL' earlier. r=franziskus
|
||||||
|
|
||||||
|
[Thomas: patch taken from upstream mercurial repository, revision
|
||||||
|
12791.]
|
||||||
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||||
|
|
||||||
|
diff -r eb8c96563cd7 -r b9ef971b94ab lib/jar/jarfile.c
|
||||||
|
--- a/nss/lib/jar/jarfile.c Mon Oct 31 17:31:20 2016 +0100
|
||||||
|
+++ b/nss/lib/jar/jarfile.c Sat Oct 29 05:10:00 2016 +0200
|
||||||
|
@@ -657,7 +657,7 @@
|
||||||
|
jar_listzip(JAR *jar, JAR_FILE fp)
|
||||||
|
{
|
||||||
|
ZZLink *ent;
|
||||||
|
- JAR_Item *it;
|
||||||
|
+ JAR_Item *it = NULL;
|
||||||
|
JAR_Physical *phy = NULL;
|
||||||
|
struct ZipLocal *Local = PORT_ZNew(struct ZipLocal);
|
||||||
|
struct ZipCentral *Central = PORT_ZNew(struct ZipCentral);
|
Loading…
x
Reference in New Issue
Block a user