[Python-checkins] python/dist/src/Modules zipimport.c,1.14,1.15

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Thu, 17 Jul 2003 08:56:10 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv30047/Modules

Modified Files:
	zipimport.c 
Log Message:
Remove unused variable.


Index: zipimport.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/zipimport.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** zipimport.c	10 May 2003 07:36:55 -0000	1.14
--- zipimport.c	17 Jul 2003 15:56:07 -0000	1.15
***************
*** 656,660 ****
  	FILE *fp;
  	long compress, crc, data_size, file_size, file_offset, date, time;
! 	long header_offset, name_size, header_size, header_end;
  	long i, l, length, count;
  	char path[MAXPATHLEN + 5];
--- 656,660 ----
  	FILE *fp;
  	long compress, crc, data_size, file_size, file_offset, date, time;
! 	long header_offset, name_size, header_size;
  	long i, l, length, count;
  	char path[MAXPATHLEN + 5];
***************
*** 676,680 ****
  	}
  	fseek(fp, -22, SEEK_END);
- 	header_end = ftell(fp);
  	if (fread(endof_central_dir, 1, 22, fp) != 22) {
  		fclose(fp);
--- 676,679 ----