summaryrefslogtreecommitdiff
path: root/user/fastjar/null-terminate.patch
blob: d9aad6ca246622597fcb77f5ef32dbe98858b700 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
From: Richard Guenther <rguenther@suse.de>
Date: Mon, 01 Mar 2010 15:38:43 +0000
Subject: [PATCH] jartool.c (read_entries): Properly zero-terminate filename.

--- a/jartool.c	2009/09/06 22:16:00	1.59
+++ b/jartool.c	2010/03/01 15:38:43	1.60
@@ -790,6 +790,7 @@
 		   progname, jarfile);
 	  return 1;
 	}
+      ze->filename[len] = '\0';
       len = UNPACK_UB4(header, CEN_EFLEN);
       len += UNPACK_UB4(header, CEN_COMLEN);
       if (lseek (fd, len, SEEK_CUR) == -1)