[Extractor-gtk-cvslog] SF.net SVN: extractor-gtk: [70] trunk/extractor/extractor.c
Extract files from unusual archive formats
Brought to you by:
someone-guy
From: <som...@us...> - 2008-03-08 20:11:10
|
Revision: 70 http://extractor-gtk.svn.sourceforge.net/extractor-gtk/?rev=70&view=rev Author: someone-guy Date: 2008-03-08 12:11:07 -0800 (Sat, 08 Mar 2008) Log Message: ----------- Fix wrong type of SIZE_COL, this probably caused crashes on all 32 bit architectures Modified Paths: -------------- trunk/extractor/extractor.c Modified: trunk/extractor/extractor.c =================================================================== --- trunk/extractor/extractor.c 2008-03-05 20:28:53 UTC (rev 69) +++ trunk/extractor/extractor.c 2008-03-08 20:11:07 UTC (rev 70) @@ -48,7 +48,7 @@ //! types of columns in the file list table const int coltypes[] = { [FNAME_COL] = G_TYPE_STRING, - [SIZE_COL] = G_TYPE_INT, + [SIZE_COL] = G_TYPE_UINT64, [COMPR_COL] = G_TYPE_BOOLEAN, [PTR_COL] = G_TYPE_POINTER, }; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |