blob: 402f90a2d5ef3d08a7d71268fe4f5e2484a10664 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001From: Christian Spieler
2Subject: zipnote.c: Close in_file instead of undefined file x
3Bug-Debian: http://bugs.debian.org/628594
4X-Debian-version: 3.0-4
5
6--- a/zipnote.c
7+++ b/zipnote.c
8@@ -661,7 +661,7 @@ char **argv; /* command line
9 if ((r = zipcopy(z)) != ZE_OK)
10 ziperr(r, "was copying an entry");
11 }
12- fclose(x);
13+ fclose(in_file);
14
15 /* Write central directory and end of central directory with new comments */
16 if ((c = zftello(y)) == (zoff_t)-1) /* get start of central */