a4d9b31978
jarfile.c:805:13: error: 'it' may be used uninitialized in this function [-Werror=maybe-uninitialized] OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/mozilla-nss?expand=0&rev=219
23 lines
655 B
Diff
23 lines
655 B
Diff
diff --git a/lib/jar/jarfile.c b/lib/jar/jarfile.c
|
|
--- a/lib/jar/jarfile.c
|
|
+++ b/lib/jar/jarfile.c
|
|
@@ -652,17 +652,17 @@ jar_gen_index(JAR *jar, jarArch format,
|
|
* List the physical contents of a Phil Katz
|
|
* style .ZIP file into the JAR linked list.
|
|
*
|
|
*/
|
|
static int
|
|
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);
|
|
struct ZipEnd *End = PORT_ZNew(struct ZipEnd);
|
|
|
|
int err = 0;
|
|
long pos = 0L;
|
|
unsigned int compression;
|